1234567891011121314151617181920212223242526 |
- <?php
- namespace app\common\model;
- class Good extends Base
- {
- protected $schema = [
- 'id' => 'int', // id
- 'no' => 'varchar', // 编号
- 'name' => 'varchar', // 物品名称
- 'desc' => 'varchar', // 物品介绍
- 'unit' => 'varchar', // 单位
- 'img' => 'varchar', // 图片
- 'create_time' => 'datetime', // 创建时间
- 'update_time' => 'datetime', // 更新时间
- 'delete_time' => 'datetime', // 删除时间
- 'valid' => 'tinyint', // 状态,1启用,0禁用
- 'spec' => 'varchar', // 规格
- 'good_class_id' => 'int', // 类别
- ];
- public function goodClass()
- {
- return $this->belongsTo(GoodClass::class);
- }
- }
|