智慧食堂
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
4.4 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. PeriodList []struct {
  19. Id int `json:"id" label:"学段id"`
  20. Name string `json:"name" label:"名称"`
  21. GradeList []struct {
  22. Id int `json:"id" label:"年级id"`
  23. Name string `json:"name" label:"名称"`
  24. ClassList []struct {
  25. Id int `json:"id" label:"班级id"`
  26. Name string `json:"name" label:"名称"`
  27. } `json:"class_list" label:"班级"`
  28. } `json:"grade_list" label:"年级"`
  29. } `json:"period_list" label:"学段"`
  30. }
  31. type EnterpriseDeleteReq struct {
  32. EnterpriseIds []int `json:"enterprise_ids"`
  33. }
  34. type EnterpriseUpdateStateReq struct {
  35. Id int `json:"id" binding:"required" label:"企业id"`
  36. State int32 `json:"state" label:"状态"`
  37. }
  38. type EnterpriseListReq struct {
  39. Limit int `json:"limit"`
  40. Page int `json:"page" `
  41. Name string `json:"name" label:"名称"`
  42. Kind int `json:"kind" label:"种类"`
  43. }
  44. type EnterpriseDetailResp struct {
  45. Enterprise model.Enterprise `json:"enterprise"`
  46. GradeList []GradeListStruct `json:"grade_list"`
  47. }
  48. type GradeListStruct struct {
  49. Grade model.Grade `json:"grade"`
  50. ClassList []model.Class `json:"class_list"`
  51. }
  52. type SetCentralKitchenForSchoolWithSpecForSystemReq struct {
  53. BreakfastUnitPrice string `json:"breakfast_unit_price" binding:"required" label:"早餐-单价"`
  54. BreakfastUnitPriceForTeacher string `json:"breakfast_unit_price_for_teacher" binding:"required" label:"教师-早餐-单价"`
  55. LunchUnitPrice string `json:"lunch_unit_price" binding:"required" label:"午餐-单价"`
  56. LunchUnitPriceForTeacher string `json:"lunch_unit_price_for_teacher" binding:"required" label:"教师-午餐-单价"`
  57. DinnerUnitPrice string `json:"dinner_unit_price" binding:"required" label:"晚餐-单价"`
  58. DinnerUnitPriceForTeacher string `json:"dinner_unit_price_for_teacher" binding:"required" label:"教师-晚餐-单价"`
  59. }
  60. type ListCentralKitchenForSchoolPackageForSystemReq struct {
  61. Page int `json:"page" label:"页码"`
  62. Limit int `json:"limit" label:"每页数量"`
  63. Year string `json:"year" label:"年份"`
  64. Month string `json:"month" label:"月份"`
  65. }
  66. type SaveCentralKitchenForSchoolPackageForSystemReq struct {
  67. Id int `json:"id" label:"套餐ID"`
  68. Year string `json:"year" binding:"required" label:"年份"`
  69. Month string `json:"month" binding:"required" label:"月份"`
  70. StartDate string `json:"start_date" binding:"required" label:"开始时间"`
  71. EndDate string `json:"end_date" binding:"required" label:"截止时间"`
  72. State int `json:"state" label:"状态(1:可用 2:不可用)"`
  73. DateList []struct {
  74. Date string `json:"date"`
  75. IsOpenBreakfast int `json:"is_open_breakfast"`
  76. IsOpenLunch int `json:"is_open_lunch"`
  77. IsOpenDinner int `json:"is_open_dinner"`
  78. IsOpenReplenish int `json:"is_open_replenish"`
  79. } `json:"date_list" binding:"required" label:"日期"`
  80. }
  81. type SyncCentralKitchenForSchoolPackageForSystemReq struct {
  82. Ids []int `json:"ids" label:"套餐ids"`
  83. EnterpriseIds []int `json:"enterprise_ids" label:"校企ids"`
  84. IsCarryPackagePrice bool `json:"is_carry_package_price" label:"是否跟随套餐价格"`
  85. }
  86. type CentralKitchenForSchoolPackageForSystemWithDay struct {
  87. Date string `json:"date"`
  88. IsOpenBreakfast int `json:"is_open_breakfast"`
  89. IsOpenLunch int `json:"is_open_lunch"`
  90. IsOpenDinner int `json:"is_open_dinner"`
  91. IsOpenReplenish int `json:"is_open_replenish"`
  92. }