智慧食堂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

md_factory.go 907 B

1 year ago
12345678910111213141516
  1. package md
  2. type FactoryInfoResp struct {
  3. Name string `json:"name" label:"名称"`
  4. Memo string `json:"memo" label:"备注"`
  5. Mode string `json:"mode" label:"模式"`
  6. Pvd string `json:"pvd" label:"场景"`
  7. Kind string `json:"kind" label:"种类(1:央厨-学校 2:央厨-工厂 3:自营-学校 4:自营-工厂)"`
  8. State string `json:"state" label:"状态(1:正常 2:冻结)"`
  9. WorkerNum int64 `json:"worker_num" label:"员工数量"`
  10. //UserNum int64 `json:"user_num" label:"用户数量"`
  11. ThisMonthConsumeAmount float64 `json:"this_month_consume_amount" label:"本月消费金额"`
  12. ThisMonthOrderNum float64 `json:"this_month_order_num" label:"本月订单"`
  13. ThisMonthServiceAmount float64 `json:"this_month_service_amount" label:"本月服务费用"`
  14. ThisMonthReceiptAmount float64 `json:"this_month_receipt_amount" label:"本月实收金额"`
  15. }