| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace app\common\model;
- use think\Model;
- class ProductsModel extends Model
- {
- protected $name = "products";
- const STOP = 0;
- const NORMAL = 1;
- //状态
- public $status_list = [
- '-1' => '全部',
- self::STOP => '停用',
- self::NORMAL => '正常'
- ];
- //产品
- public function productsList()
- {
- return $this->hasMany('ProductLists', 'type_id', 'id');
- }
- }
|