GoodClass.php 478 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. class GoodClass extends Base
  4. {
  5. protected $schema = [
  6. 'id' => 'int', // id
  7. 'name' => 'varchar', // 物品类别名称
  8. 'desc' => 'varchar', // 类别说明
  9. 'create_time' => 'datetime', // 创建时间
  10. 'update_time' => 'datetime', // 更新时间
  11. 'delete_time' => 'datetime', // 删除时间
  12. 'valid' => 'tinyint', // 状态,1启用,0禁用
  13. ];
  14. }