12345678910111213141516171819 |
- <?php
- namespace app\admin\model;
- class GoodStockInfo extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'stockid' =>'bigint',//库存id
- 'bnCode' =>'varchar',//bn编号
- 'total_num' =>'int',//总数
- 'used_num' =>'int',//已用数量
- 'balance_num' =>'int',//可用数量
- 'origin_price' =>'decimal',//成本价格
- 'addtime' =>'datetime',//
- 'updatetime' =>'datetime',//
- ];
- }
|