| 12345678910111213141516171819202122 |
- <?php
- namespace app\admin\model\third;
- use think\Model;
- class Platform extends Model
- {
- // 表名
- protected $name = '第三方平台列表';
- // 自动写入时间戳字段(createtime 为 int 类型)
- protected $autoWriteTimestamp = 'int';
- protected $createTime = 'createtime';
- protected $updateTime = false;
- // 字段格式化(将 createtime 转换为日期格式)
- public function getCreatetimeAttr($value)
- {
- return date('Y-m-d H:i:s', $value);
- }
- }
|