SaleBk.php 572 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\admin\model;
  3. class SaleBk extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'orderCode' =>'varchar',//确认单编号
  9. 'spuCode' =>'varchar',//商品编号
  10. 'total_num' =>'int',//总数
  11. 'merge_num' =>'int',//已合并数量
  12. 'balance_num' =>'int',//带合并数量
  13. 'status' =>'tinyint',//状态
  14. 'is_del' =>'tinyint',//
  15. 'addtime' =>'datetime',//
  16. 'updatetime' =>'datetime',//
  17. ];
  18. }