GoodNakeTemp.php 662 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\admin\model;
  3. class GoodNakeTemp extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'spuCode' =>'varchar',//
  8. 'min_num' =>'int',//最小起订量
  9. 'nake_fee' =>'decimal',//成本裸价
  10. 'cost_fee' =>'decimal',//工艺费
  11. 'delivery_fee' =>'decimal',//运费
  12. 'cert_fee' =>'decimal',//证书费
  13. 'mark_fee' =>'decimal',//加标费
  14. 'package_fee' =>'decimal',//包装费
  15. 'other_fee' =>'decimal',//其他费用
  16. 'nake_total' =>'decimal',//成本总计
  17. 'plat_code' =>'varchar',//
  18. ];
  19. }