UserBanner.php 241 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. use think\db\Query;
  4. use think\Model;
  5. /**
  6. * 会员模型
  7. * @method Query|self exists($data)
  8. * @property string city_detail
  9. */
  10. class UserBanner extends Model
  11. {
  12. protected $autoWriteTimestamp=true;
  13. }