12345678910111213141516 |
- <?php
- namespace app\common\model;
- class GoodClass extends Base
- {
- protected $schema = [
- 'id' => 'int', // id
- 'name' => 'varchar', // 物品类别名称
- 'desc' => 'varchar', // 类别说明
- 'create_time' => 'datetime', // 创建时间
- 'update_time' => 'datetime', // 更新时间
- 'delete_time' => 'datetime', // 删除时间
- 'valid' => 'tinyint', // 状态,1启用,0禁用
- ];
- }
|