tp6框架的销售统计系统

OrderItem.php 832B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace app\model;
  3. class OrderItem extends \think\Model
  4. {
  5. protected $schema = [
  6. 'id' => 'int',
  7. 'order_id' => 'int',
  8. 'goods_category_id' => 'int',
  9. 'goods_category_name' => 'string',
  10. 'goods_id' => 'int',
  11. 'goods_name' => 'string',
  12. 'goods_price' => 'int',
  13. 'sales_amount' => 'decimal',
  14. 'sales_price' => 'int', // 单位分
  15. 'sales_money' => 'int', // 单位分
  16. 'actual_amount' => 'decimal',
  17. 'actual_price' => 'int', // 单位分
  18. 'actual_money' => 'int', // 单位分
  19. 'status' => 'int',
  20. 'remark' => 'string',
  21. 'fare' => 'int', // 单位分
  22. 'agency' => 'int', // 单位分
  23. 'other_fee' => 'int', // 单位分
  24. 'type' => 'int',
  25. 'create_time' => 'int'
  26. ];
  27. }