123456789101112131415161718192021222324 |
- <?php
- namespace app\common\model;
- use think\Model;
- use app\common\library\Common;
- use think\Db;
- /**
- * 推荐奖励model
- */
- class RecommendConfig Extends Model
- {
- // 开启自动写入时间戳字段
- protected $autoWriteTimestamp = 'timestamp';
- // 定义时间戳字段名
- protected $createTime = 'create_at';
- protected $updateTime = 'update_at';
- // 追加属性
- protected $append = [
- ];
- }
|