智慧食堂
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

102 líneas
4.2 KiB

  1. package md
  2. import "applet/app/db/model"
  3. type EnterpriseAddReq struct {
  4. Name string `json:"name" binding:"required" label:"名称"`
  5. Pvd int32 `json:"pvd" label:"场景"`
  6. Kind int32 `json:"kind" binding:"required" label:"种类(1:央厨-学校 2:央厨-工厂 3:自营-学校 4:自营-工厂 5:养老院)"`
  7. CompanyId int `json:"company_id" binding:"required" label:"所属公司id"`
  8. Memo string `json:"memo" label:"备注"`
  9. }
  10. type EnterpriseUpdateReq struct {
  11. Id int `json:"id" binding:"required" label:"企业id"`
  12. Name string `json:"name" binding:"required" label:"名称"`
  13. Pvd int32 `json:"pvd" label:"场景"`
  14. Kind int32 `json:"kind" binding:"required" label:"种类(1:央厨-学校 2:央厨-工厂 3:自营-学校 4:自营-工厂 5:养老院)"`
  15. CompanyId int `json:"company_id" binding:"required" label:"所属公司id"`
  16. Memo string `json:"memo" label:"备注"`
  17. State int32 `json:"state" label:"状态"`
  18. GradeList []struct {
  19. Id int `json:"id" label:"年级id"`
  20. Name string `json:"name" label:"名称"`
  21. ClassList []struct {
  22. Id int `json:"id" label:"班级id"`
  23. Name string `json:"name" label:"名称"`
  24. } `json:"class_list" label:"班级"`
  25. } `json:"grade_list" label:"年级"`
  26. }
  27. type EnterpriseDeleteReq struct {
  28. EnterpriseIds []int `json:"enterprise_ids"`
  29. }
  30. type EnterpriseUpdateStateReq struct {
  31. Id int `json:"id" binding:"required" label:"企业id"`
  32. State int32 `json:"state" label:"状态"`
  33. }
  34. type EnterpriseListReq struct {
  35. Limit int `json:"limit"`
  36. Page int `json:"page" `
  37. Name string `json:"name" label:"名称"`
  38. Kind int `json:"kind" label:"种类"`
  39. }
  40. type EnterpriseDetailResp struct {
  41. Enterprise model.Enterprise `json:"enterprise"`
  42. GradeList []GradeListStruct `json:"grade_list"`
  43. }
  44. type GradeListStruct struct {
  45. Grade model.Grade `json:"grade"`
  46. ClassList []model.Class `json:"class_list"`
  47. }
  48. type SetCentralKitchenForSchoolWithSpecForSystemReq struct {
  49. BreakfastUnitPrice string `json:"breakfast_unit_price" binding:"required" label:"早餐-单价"`
  50. BreakfastUnitPriceForTeacher string `json:"breakfast_unit_price_for_teacher" binding:"required" label:"教师-早餐-单价"`
  51. LunchUnitPrice string `json:"lunch_unit_price" binding:"required" label:"午餐-单价"`
  52. LunchUnitPriceForTeacher string `json:"lunch_unit_price_for_teacher" binding:"required" label:"教师-午餐-单价"`
  53. DinnerUnitPrice string `json:"dinner_unit_price" binding:"required" label:"晚餐-单价"`
  54. DinnerUnitPriceForTeacher string `json:"dinner_unit_price_for_teacher" binding:"required" label:"教师-晚餐-单价"`
  55. }
  56. type ListCentralKitchenForSchoolPackageForSystemReq struct {
  57. Page int `json:"page" label:"页码"`
  58. Limit int `json:"limit" label:"每页数量"`
  59. Year string `json:"year" label:"年份"`
  60. Month string `json:"month" label:"月份"`
  61. }
  62. type SaveCentralKitchenForSchoolPackageForSystemReq struct {
  63. Id int `json:"id" label:"套餐ID"`
  64. Year string `json:"year" binding:"required" label:"年份"`
  65. Month string `json:"month" binding:"required" label:"月份"`
  66. StartDate string `json:"start_date" binding:"required" label:"开始时间"`
  67. EndDate string `json:"end_date" binding:"required" label:"截止时间"`
  68. State int `json:"state" label:"状态(1:可用 2:不可用)"`
  69. DateList []struct {
  70. Date string `json:"date"`
  71. IsOpenBreakfast int `json:"is_open_breakfast"`
  72. IsOpenLunch int `json:"is_open_lunch"`
  73. IsOpenDinner int `json:"is_open_dinner"`
  74. IsOpenReplenish int `json:"is_open_replenish"`
  75. } `json:"date_list" binding:"required" label:"日期"`
  76. }
  77. type SyncCentralKitchenForSchoolPackageForSystemReq struct {
  78. Ids []int `json:"ids" label:"套餐ids"`
  79. EnterpriseIds []int `json:"enterprise_ids" label:"校企ids"`
  80. IsCarryPackagePrice bool `json:"is_carry_package_price" label:"是否跟随套餐价格"`
  81. }
  82. type CentralKitchenForSchoolPackageForSystemWithDay struct {
  83. Date string `json:"date"`
  84. IsOpenBreakfast int `json:"is_open_breakfast"`
  85. IsOpenLunch int `json:"is_open_lunch"`
  86. IsOpenDinner int `json:"is_open_dinner"`
  87. IsOpenReplenish int `json:"is_open_replenish"`
  88. }