RecommendConfig.php 427 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. use app\common\library\Common;
  5. use think\Db;
  6. /**
  7. * 推荐奖励model
  8. */
  9. class RecommendConfig Extends Model
  10. {
  11. // 开启自动写入时间戳字段
  12. protected $autoWriteTimestamp = 'timestamp';
  13. // 定义时间戳字段名
  14. protected $createTime = 'create_at';
  15. protected $updateTime = 'update_at';
  16. // 追加属性
  17. protected $append = [
  18. ];
  19. }