Attachment.php 418 B

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