1234567891011121314151617181920212223242526 |
- <?php
- namespace app\admin\model;
- class CheckItem extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'bnCode' =>'varchar',//bn编号
- 'spuCode' =>'varchar',//商品属性code
- 'good_name' =>'varchar',//商品名称
- 'origin_price' =>'decimal',//成本价
- 'origin_num' =>'int',//盘点前数量
- 'check_num' =>'int',//盘点后的数量
- 'is_profit' =>'tinyint',//0盘盈1盘亏
- 'diff_num' =>'int',//差额数量
- 'status' =>'int',//审核状态
- 'remark' =>'varchar',//备注
- 'is_del' =>'int',//是否删除
- 'check_time' =>'varchar',//盘点时间
- 'addtime' =>'datetime',//新建时间
- 'updatetime' =>'datetime',//
- 'check_code' =>'varchar',//盘点编号
- ];
- }
|