123456789101112131415161718192021222324 |
- <?php
- namespace app\admin\model;
- class CombindStock extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'stockCode' =>'varchar',
- 'spuCode' =>'varchar',
- 'wsm_code' =>'varchar',
- 'good_name' =>'varchar',
- 'flag' =>'tinyint',
- 'bnCode' =>'varchar',
- 'stock_num' =>'int',
- 'apply_name' =>'varchar',
- 'apply_id' =>'int',
- 'remark' =>'varchar',
- 'status' =>'tinyint',
- 'createtime' =>'datetime',
- 'updatetime' =>'datetime',
- ];
- }
|