Cert.php 409 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Cert extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'title' => 'string',
  10. 'cnumber' => 'string',
  11. 'tilpic' => 'string',
  12. 'remark' => 'string',
  13. 'createtime' => 'int'
  14. ];
  15. // 设置字段自动转换类型
  16. protected $type = [
  17. 'createtime' => 'timestamp:Y-m-d H:i:s'
  18. ];
  19. }