GoodNake.php 956 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\admin\model;
  3. class GoodNake extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'spuCode' =>'varchar',//
  9. 'min_num' =>'int',//最小起订量
  10. 'nake_fee' =>'decimal',//成本裸价
  11. 'cost_fee' =>'decimal',//工艺费
  12. 'delivery_fee' =>'decimal',//运费
  13. 'cert_fee' =>'decimal',//证书费
  14. 'mark_fee' =>'decimal',//加标费
  15. 'package_fee' =>'decimal',//包装费
  16. 'other_fee' =>'decimal',//其他费用
  17. 'nake_total' =>'decimal',//成本总计
  18. 'supplier_origin_price' =>'decimal',//供应商成本价
  19. 'creater_id' =>'int',//采购人id
  20. 'creater' =>'varchar',//创建人(采购人)名称
  21. 'is_del' =>'tinyint',//
  22. 'addtime' =>'datetime',//
  23. 'updatetime' =>'datetime',//
  24. ];
  25. }