Platform.php 507 B

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