MemberHistory.php 228 B

123456789101112131415
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 前台用户历史记录表
  6. * @author Administrator
  7. */
  8. class MemberHistory extends Model
  9. {
  10. protected $pk = 'id';
  11. protected $table = 'cy_member_history';
  12. }