智慧食堂
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.

702 lines
35 KiB

  1. package md
  2. type EnterpriseUserListReq struct {
  3. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  4. GradeId int `json:"grade_id" label:"年级id"`
  5. ClassId int `json:"class_id" label:"班级id"`
  6. Limit int `json:"limit" binding:"required"`
  7. Page int `json:"page" binding:"required"`
  8. Nickname string `json:"nickname" label:"支付宝昵称"`
  9. Name string `json:"name" label:"用户名称"`
  10. Phone string `json:"phone" label:"手机号"`
  11. IsTeacher int `json:"is_teacher" label:"是否教师"`
  12. EnterpriseName string `json:"enterprise_name" label:"校企名称"`
  13. }
  14. type EnterpriseUserListByCentralKitchenForSchoolStruct struct {
  15. Id int `json:"id" label:"支付宝昵称"`
  16. Nickname string `json:"nickname" label:"支付宝昵称"`
  17. Phone string `json:"phone" label:"手机号"`
  18. Avatar string `json:"avatar" label:"头像"`
  19. IsTeacher int `json:"is_teacher" label:"是否教师"`
  20. CreateAt string `json:"create_at" label:"创建时间"`
  21. UserIdentities []struct {
  22. Id int `json:"id" label:"身份id"`
  23. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  24. IdNo string `json:"id_no" label:"身份证号"`
  25. SchoolName string `json:"school_name" label:"学校名"`
  26. Name string `json:"name" label:"姓名"`
  27. Grade string `json:"grade" label:"年级"`
  28. GradeId int `json:"grade_id" label:"年级id"`
  29. Class string `json:"class" label:"班级"`
  30. ClassId int `json:"class_id" label:"班级id"`
  31. } `json:"user_identities" label:"身份列表"`
  32. }
  33. type EnterpriseUserListByCentralKitchenForSchoolResp struct {
  34. List []EnterpriseUserListByCentralKitchenForSchoolStruct `json:"list"`
  35. Total int64 `json:"total"`
  36. UserIdentityKindList interface{} `json:"user_identity_kind_list"`
  37. }
  38. type CentralKitchenForSchoolUserUpdateReq struct {
  39. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  40. Uid int `json:"uid" binding:"required" label:"用户id"`
  41. Nickname string `json:"nickname" label:"支付宝昵称"`
  42. Phone string `json:"phone" binding:"required" label:"手机号"`
  43. BindUserIdentities []struct {
  44. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  45. IdNo string `json:"id_no" label:"身份证号"`
  46. Name string `json:"name" label:"姓名"`
  47. GradeId int `json:"grade_id" label:"年级"`
  48. ClassId int `json:"class_id" label:"班级"`
  49. } `json:"user_identities" label:"身份列表"`
  50. }
  51. type CentralKitchenForSchoolUserUpdateReqV2 struct {
  52. Uid int `json:"uid" binding:"required" label:"用户id"`
  53. Nickname string `json:"nickname" label:"支付宝昵称"`
  54. Phone string `json:"phone" binding:"required" label:"手机号"`
  55. BindUserIdentities []struct {
  56. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  57. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  58. IdNo string `json:"id_no" label:"身份证号"`
  59. Name string `json:"name" label:"姓名"`
  60. GradeId int `json:"grade_id" label:"年级"`
  61. ClassId int `json:"class_id" label:"班级"`
  62. } `json:"user_identities" label:"身份列表"`
  63. }
  64. type CentralKitchenForSchoolUserDeleteReq struct {
  65. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  66. Uids []int `json:"uids" binding:"required" label:"用户id"`
  67. }
  68. type CentralKitchenForSchoolStudentListReq struct {
  69. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  70. Limit int `json:"limit" binding:"required"`
  71. Page int `json:"page" binding:"required"`
  72. Name string `json:"name" label:"姓名"`
  73. IdNo string `json:"id_no" label:"身份证号"`
  74. Phone string `json:"phone" label:"手机号"`
  75. GradeId int `json:"grade_id" label:"年级id"`
  76. ClassId int `json:"class_id" label:"班级id"`
  77. }
  78. type CentralKitchenForSchoolTeacherListReq struct {
  79. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  80. Limit int `json:"limit" binding:"required"`
  81. Page int `json:"page" binding:"required"`
  82. Name string `json:"name" label:"姓名"`
  83. IdNo string `json:"id_no" label:"身份证号"`
  84. }
  85. type CentralKitchenForSchoolStudentListResp struct {
  86. IdNo string `json:"id_no" label:"身份证号"`
  87. ParentPhone string `json:"parent_phone" label:"家长电话"`
  88. Name string `json:"name" label:"姓名"`
  89. Grade string `json:"grade" label:"年级"`
  90. GradeId int `json:"grade_id" label:"年级id"`
  91. Class string `json:"class" label:"班级"`
  92. ClassId int `json:"class_id" label:"班级"`
  93. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  94. }
  95. type CentralKitchenForSchoolTeacherListResp struct {
  96. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  97. IdNo string `json:"id_no" label:"身份证号"`
  98. Phone string `json:"parent_phone" label:"电话"`
  99. Name string `json:"name" label:"姓名"`
  100. }
  101. type CentralKitchenForSchoolTeacherUpdateReq struct {
  102. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  103. UserIdentityId int `json:"user_identity_id" binding:"required" label:"用户身份id"`
  104. IdNo string `json:"id_no" label:"身份证号"`
  105. Name string `json:"name" label:"姓名"`
  106. }
  107. type CentralKitchenForSchoolStudentUpdateReq struct {
  108. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  109. UserIdentityId int `json:"user_identity_id" binding:"required" label:"用户身份id"`
  110. IdNo string `json:"id_no" label:"身份证号"`
  111. Name string `json:"name" label:"姓名"`
  112. GradeId int `json:"grade_id" label:"年级id"`
  113. ClassId int `json:"class_id" label:"班级id"`
  114. }
  115. type CentralKitchenForSchoolStudentDeleteReq struct {
  116. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  117. UserIdentityIds []int `json:"user_identity_ids" binding:"required" label:"用户身份id"`
  118. }
  119. type CentralKitchenForSchoolTeacherDeleteReq struct {
  120. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  121. UserIdentityIds []int `json:"user_identity_ids" binding:"required" label:"用户身份id"`
  122. }
  123. type CentralKitchenForSchoolStudentAdmissionReq struct {
  124. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  125. ClassId int `json:"class_id" label:"班级id"`
  126. GradeId int `json:"grade_id" label:"年级id"`
  127. }
  128. type SetCentralKitchenForSchoolWithSpecReq struct {
  129. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  130. BreakfastUnitPrice string `json:"breakfast_unit_price" binding:"required" label:"早餐-单价"`
  131. BreakfastUnitPriceForTeacher string `json:"breakfast_unit_price_for_teacher" binding:"required" label:"教师-早餐-单价"`
  132. LunchUnitPrice string `json:"lunch_unit_price" binding:"required" label:"午餐-单价"`
  133. LunchUnitPriceForTeacher string `json:"lunch_unit_price_for_teacher" binding:"required" label:"教师-午餐-单价"`
  134. DinnerUnitPrice string `json:"dinner_unit_price" binding:"required" label:"晚餐-单价"`
  135. DinnerUnitPriceForTeacher string `json:"dinner_unit_price_for_teacher" binding:"required" label:"教师-晚餐-单价"`
  136. }
  137. type SetCentralKitchenForSchoolWithSpecByPeriodReq struct {
  138. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  139. List []struct {
  140. PeriodId int `json:"period_id" binding:"required" label:"学段id"`
  141. BreakfastUnitPrice string `json:"breakfast_unit_price" binding:"required" label:"早餐-单价"`
  142. LunchUnitPrice string `json:"lunch_unit_price" binding:"required" label:"午餐-单价"`
  143. DinnerUnitPrice string `json:"dinner_unit_price" binding:"required" label:"晚餐-单价"`
  144. } `json:"list" binding:"required" label:"日期"`
  145. }
  146. type SaveCentralKitchenForSchoolPackageReq struct {
  147. PackageId int `json:"package_id" label:"套餐ID"`
  148. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  149. Year string `json:"year" binding:"required" label:"年份"`
  150. Month string `json:"month" binding:"required" label:"月份"`
  151. StartDate string `json:"start_date" binding:"required" label:"开始时间"`
  152. EndDate string `json:"end_date" binding:"required" label:"截止时间"`
  153. State int `json:"state" label:"状态(1:可用 2:不可用)"`
  154. DateList []struct {
  155. Date string `json:"date"`
  156. IsOpenBreakfast int32 `json:"is_open_breakfast"`
  157. IsOpenLunch int32 `json:"is_open_lunch"`
  158. IsOpenDinner int32 `json:"is_open_dinner"`
  159. IsOpenReplenish int32 `json:"is_open_replenish"`
  160. } `json:"date_list" binding:"required" label:"日期"`
  161. }
  162. type SetBasicCentralKitchenForSchoolReq struct {
  163. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  164. State int32 `json:"state" label:"状态(1:正常 2:冻结)"`
  165. Name string `json:"name" binding:"required" label:"名称"`
  166. IsOpenBreakfast int `json:"is_open_breakfast" label:"是否开启早餐"`
  167. IsOpenLunch int `json:"is_open_lunch" label:"是否开启午餐"`
  168. IsOpenDinner int `json:"is_open_dinner" label:"是否开启晚餐"`
  169. IsOpenReportMealForDay int `json:"is_open_report_meal_for_day" label:"开启学生按天报餐(1:开启 2:关闭)"`
  170. IsOpenReportMealForMonth int `json:"is_open_report_meal_for_month" label:"开启学生按月报餐(1:开启 2:关闭)"`
  171. IsOpenReportMealForSemester int `json:"is_open_report_meal_for_semester" label:"开启学生按学期报餐(1:开启 2:关闭)"`
  172. IsOpenTeacherReportMealForDay int `json:"is_open_teacher_report_meal_for_day" label:"开启教师按天报餐(1:开启 2:关闭)"`
  173. IsOpenTeacherReportMealForMonth int `json:"is_open_teacher_report_meal_for_month" label:"开启教师按月报餐(1:开启 2:关闭)"`
  174. IsOpenTeacherReportMealForSemester int `json:"is_open_teacher_report_meal_for_semester" label:"开启教师按学期报餐(1:开启 2:关闭)"`
  175. IsOpenTeacherReportMeal int `json:"is_open_teacher_report_meal" label:"'教师报餐(1:开启 2:关闭)"`
  176. }
  177. type ListCentralKitchenForSchoolPackageReq struct {
  178. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  179. Page int `json:"page" label:"页码"`
  180. Limit int `json:"limit" label:"每页数量"`
  181. Year string `json:"year" label:"年份"`
  182. Month string `json:"month" label:"月份"`
  183. }
  184. type CentralKitchenForSchoolOrdRefundReq struct {
  185. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  186. Ids []string `json:"ids" label:"ids" binding:"required"`
  187. }
  188. type CentralKitchenForSchoolOrdListResp struct {
  189. EnterpriseId int `json:"enterprise_id" `
  190. EnterpriseName string `json:"enterprise_name" `
  191. Uid int `json:"uid" `
  192. UserIdentityId int `json:"user_identity_id" `
  193. UserIdentityKind int `json:"user_identity_kind" `
  194. UserIdentityName string `json:"user_identity_name" `
  195. TotalPrice string `json:"total_price" `
  196. Kind int `json:"kind" `
  197. OutTradeNo string `json:"out_trade_no" `
  198. TradeNo string `json:"trade_no"`
  199. State int `json:"state"`
  200. OrdState int `json:"ord_state"`
  201. CreateAt string `json:"create_at"`
  202. Phone string `json:"phone" label:"家长联系电话"`
  203. Name string `json:"name" label:"姓名"`
  204. Grade string `json:"grade" label:"年级"`
  205. GradeId int `json:"grade_id" label:"年级id"`
  206. Class string `json:"class" label:"班级"`
  207. ClassId int `json:"class_id" label:"班级id"`
  208. }
  209. type CentralKitchenForSchoolOrdListReq struct {
  210. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  211. IsTeacher int `json:"is_teacher" label:"是否教师"`
  212. Limit int `json:"limit" binding:"required"`
  213. Page int `json:"page" binding:"required"`
  214. Name string `json:"name" label:"姓名"`
  215. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  216. Kind int `json:"kind" label:"预定类型"`
  217. Sate int `json:"state" label:"支付状态"`
  218. OrdSate int `json:"ord_state" label:"订单状态"`
  219. GradeId int `json:"grade_id" label:"年级id"`
  220. ClassId int `json:"class_id" label:"班级id"`
  221. Phone string `json:"phone" label:"家长联系电话"`
  222. StartDate string `json:"start_date" label:"开始时间"`
  223. EndDate string `json:"end_date" label:"截止时间"`
  224. }
  225. type CentralKitchenForSchoolReserveListReq struct {
  226. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  227. Limit int `json:"limit" binding:"required"`
  228. Page int `json:"page" binding:"required"`
  229. Name string `json:"name" label:"姓名"`
  230. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  231. Kind int `json:"kind" label:"预定类型"`
  232. GradeId int `json:"grade_id" label:"年级id"`
  233. ClassId int `json:"class_id" label:"班级id"`
  234. Phone string `json:"phone" label:"家长联系电话"`
  235. StartDate string `json:"start_date" label:"开始时间"`
  236. EndDate string `json:"end_date" label:"截止时间"`
  237. }
  238. type CentralKitchenForSchoolReserveUpdateStudentReq struct {
  239. Id int `json:"id" `
  240. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  241. UserIdentityId int `json:"user_identity_id" `
  242. OriginalUserIdentityId int `json:"original_user_identity_id" `
  243. Uid int `json:"uid" `
  244. }
  245. type CentralKitchenForSchoolReserveListResp struct {
  246. Id int `json:"id" `
  247. EnterpriseId int `json:"enterprise_id" `
  248. EnterpriseName string `json:"enterprise_name" `
  249. Uid int `json:"uid" `
  250. UserIdentityId int `json:"user_identity_id" `
  251. UserIdentityName string `json:"user_identity_name" `
  252. Kind int `json:"kind"`
  253. OutTradeNo string `json:"out_trade_no" `
  254. ReserveMonth string `json:"reserve_month"`
  255. TotalPrice string `json:"total_price"`
  256. CreateAt string `json:"create_at"`
  257. Phone string `json:"phone" label:"家长联系电话"`
  258. Grade string `json:"grade" label:"年级"`
  259. GradeId int `json:"grade_id" label:"年级id"`
  260. Class string `json:"class" label:"班级"`
  261. ClassId int `json:"class_id" label:"班级id"`
  262. }
  263. type SelfSupportForSchoolUserUpdateReq struct {
  264. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  265. Uid int `json:"uid" binding:"required" label:"用户id"`
  266. Nickname string `json:"nickname" binding:"required" label:"支付宝昵称"`
  267. Phone string `json:"phone" binding:"required" label:"手机号"`
  268. BindUserIdentities []struct {
  269. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  270. IdNo string `json:"id_no" label:"身份证号"`
  271. Name string `json:"name" label:"姓名"`
  272. GradeId int `json:"grade_id" label:"年级"`
  273. ClassId int `json:"class_id" label:"班级"`
  274. } `json:"user_identities" label:"身份列表"`
  275. }
  276. type SelfSupportForSchoolUserDeleteReq struct {
  277. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  278. Uids []int `json:"uids" binding:"required" label:"用户id"`
  279. }
  280. type SelfSupportForSchoolStudentListReq struct {
  281. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  282. Limit int `json:"limit" binding:"required"`
  283. Page int `json:"page" binding:"required"`
  284. Name string `json:"name" label:"姓名"`
  285. IdNo string `json:"id_no" label:"身份证号"`
  286. Phone string `json:"phone" label:"手机号"`
  287. GradeId int `json:"grade_id" label:"年级id"`
  288. ClassId int `json:"class_id" label:"班级id"`
  289. }
  290. type SelfSupportForSchoolStudentListResp struct {
  291. IdNo string `json:"id_no" label:"身份证号"`
  292. ParentPhone string `json:"parent_phone" label:"家长电话"`
  293. Name string `json:"name" label:"姓名"`
  294. Grade string `json:"grade" label:"年级"`
  295. GradeId int `json:"grade_id" label:"年级id"`
  296. Class string `json:"class" label:"班级"`
  297. ClassId int `json:"class_id" label:"班级"`
  298. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  299. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采) "`
  300. SchoolFacePassStatus string `json:"school_face_pass_status" label:"校园一脸通行开通状态(开通:OPEN 关闭:CLOSE) "`
  301. SchoolFacePaymentStatus string `json:"school_face_payment_status" label:"校园一脸通行刷脸支付开通状态(开通:OPEN 关闭:CLOSE) "`
  302. }
  303. type SelfSupportForSchoolTeacherListReq struct {
  304. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  305. Limit int `json:"limit" binding:"required"`
  306. Page int `json:"page" binding:"required"`
  307. Name string `json:"name" label:"姓名"`
  308. IdNo string `json:"id_no" label:"身份证号"`
  309. }
  310. type SelfSupportForSchoolTeacherListResp struct {
  311. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  312. IdNo string `json:"id_no" label:"身份证号"`
  313. Phone string `json:"parent_phone" label:"电话"`
  314. Name string `json:"name" label:"姓名"`
  315. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采) "`
  316. SchoolFacePassStatus string `json:"school_face_pass_status" label:"校园一脸通行开通状态(开通:OPEN 关闭:CLOSE) "`
  317. SchoolFacePaymentStatus string `json:"school_face_payment_status" label:"校园一脸通行刷脸支付开通状态(开通:OPEN 关闭:CLOSE) "`
  318. }
  319. type SelfSupportForSchoolStudentUpdateReq struct {
  320. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  321. UserIdentityId int `json:"user_identity_id" binding:"required" label:"用户身份id"`
  322. IdNo string `json:"id_no" label:"身份证号"`
  323. Name string `json:"name" label:"姓名"`
  324. GradeId int `json:"grade_id" label:"年级id"`
  325. ClassId int `json:"class_id" label:"班级id"`
  326. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采)"`
  327. }
  328. type SelfSupportForSchoolStudentAddReq struct {
  329. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  330. IdNo string `json:"id_no" label:"身份证号"`
  331. Name string `json:"name" label:"姓名"`
  332. GradeId int `json:"grade_id" label:"年级id"`
  333. ClassId int `json:"class_id" label:"班级id"`
  334. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采)"`
  335. }
  336. type SelfSupportForSchoolStudentDeleteReq struct {
  337. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  338. UserIdentityIds []int `json:"user_identity_ids" binding:"required" label:"用户身份id"`
  339. }
  340. type SelfSupportForSchoolStudentAdmissionReq struct {
  341. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  342. ClassId int `json:"class_id" label:"班级id"`
  343. GradeId int `json:"grade_id" label:"年级id"`
  344. }
  345. type SelfSupportForSchoolTeacherUpdateReq struct {
  346. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  347. UserIdentityId int `json:"user_identity_id" binding:"required" label:"用户身份id"`
  348. IdNo string `json:"id_no" label:"身份证号"`
  349. Name string `json:"name" label:"姓名"`
  350. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采)"`
  351. }
  352. type SelfSupportForSchoolTeacherDeleteReq struct {
  353. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  354. UserIdentityIds []int `json:"user_identity_ids" binding:"required" label:"用户身份id"`
  355. }
  356. type SelfSupportForSchoolWorkerListReq struct {
  357. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  358. Limit int `json:"limit" binding:"required"`
  359. Page int `json:"page" binding:"required"`
  360. Name string `json:"name" label:"姓名"`
  361. IdNo string `json:"id_no" label:"身份证号"`
  362. }
  363. type SelfSupportForSchoolWorkerListResp struct {
  364. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  365. IdNo string `json:"id_no" label:"身份证号"`
  366. Phone string `json:"parent_phone" label:"电话"`
  367. Name string `json:"name" label:"姓名"`
  368. CreateAt string `json:"create_at" label:"创建时间"`
  369. }
  370. type SelfSupportForSchoolWorkerUpdateReq struct {
  371. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  372. UserIdentityId int `json:"user_identity_id" binding:"required" label:"用户身份id"`
  373. IdNo string `json:"id_no" label:"身份证号"`
  374. Name string `json:"name" label:"姓名"`
  375. }
  376. type SelfSupportForSchoolWorkerDeleteReq struct {
  377. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  378. UserIdentityIds []int `json:"user_identity_ids" binding:"required" label:"用户身份id"`
  379. }
  380. type CentralKitchenForSchoolGradeListReq struct {
  381. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  382. Limit int `json:"limit" binding:"required"`
  383. Page int `json:"page" binding:"required"`
  384. Name string `json:"name" label:"名称"`
  385. }
  386. type CentralKitchenForSchoolClassListReq struct {
  387. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  388. GradeId int `json:"grade_id" label:"年级id"`
  389. Limit int `json:"limit" binding:"required"`
  390. Page int `json:"page" binding:"required"`
  391. Name string `json:"name" label:"名称"`
  392. }
  393. type SelfSupportForSchoolGradeListReq struct {
  394. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  395. Limit int `json:"limit" binding:"required"`
  396. Page int `json:"page" binding:"required"`
  397. Name string `json:"name" label:"名称"`
  398. }
  399. type SelfSupportForSchoolClassListReq struct {
  400. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  401. GradeId int `json:"grade_id" label:"年级id"`
  402. Limit int `json:"limit" binding:"required"`
  403. Page int `json:"page" binding:"required"`
  404. Name string `json:"name" label:"名称"`
  405. }
  406. type SelfSupportForSchoolAddWorkerReq struct {
  407. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  408. Name string `json:"name" label:"名称"`
  409. IdNo string `json:"id_no" label:"身份证号"`
  410. }
  411. type SelfSupportForSchoolAddTeacherReq struct {
  412. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  413. Name string `json:"name" label:"名称"`
  414. IdNo string `json:"id_no" label:"身份证号"`
  415. }
  416. type SelfSupportForSchoolOrdListReq struct {
  417. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  418. Limit int `json:"limit" binding:"required"`
  419. Page int `json:"page" binding:"required"`
  420. Name string `json:"name" label:"姓名"`
  421. Phone string `json:"phone" label:"用户电话"`
  422. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  423. OrderStatus int `json:"order_status" label:"订单状态"`
  424. GradeId int `json:"grade_id" label:"年级id"`
  425. ClassId int `json:"class_id" label:"班级id"`
  426. StartDate string `json:"start_date" label:"刷脸-开始时间"`
  427. EndDate string `json:"end_date" label:"刷脸-截止时间"`
  428. IsTeacher int `json:"is_teacher" label:"是否教师"`
  429. }
  430. type SelfSupportForSchoolArrearsOrdListReq struct {
  431. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  432. Limit int `json:"limit" binding:"required"`
  433. Page int `json:"page" binding:"required"`
  434. Name string `json:"name" label:"姓名"`
  435. Phone string `json:"phone" label:"用户电话"`
  436. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  437. GradeId int `json:"grade_id" label:"年级id"`
  438. ClassId int `json:"class_id" label:"班级id"`
  439. StartDate string `json:"start_date" label:"刷脸-开始时间"`
  440. EndDate string `json:"end_date" label:"刷脸-截止时间"`
  441. IsTeacher int `json:"is_teacher" label:"是否教师"`
  442. }
  443. type SelfSupportForSchoolBlackListReq struct {
  444. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  445. Limit int `json:"limit" binding:"required"`
  446. Page int `json:"page" binding:"required"`
  447. }
  448. type SelfSupportForSchoolArrearsOrdDebtRepayReq struct {
  449. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  450. OutOrderNo string `json:"out_order_no"`
  451. MerchantCode string `json:"merchant_code" `
  452. }
  453. type SelfSupportForSchoolArrearsOrdDebtCancelReq struct {
  454. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  455. OutOrderNo string `json:"out_order_no"`
  456. MerchantCode string `json:"merchant_code" `
  457. }
  458. type SelfSupportForSchoolOrdListResp struct {
  459. EnterpriseId int `json:"enterprise_id" `
  460. EnterpriseName string `json:"enterprise_name" `
  461. Uid int `json:"uid" `
  462. UserIdentityId int `json:"user_identity_id" `
  463. UserIdentityName string `json:"user_identity_name" `
  464. TotalPrice string `json:"total_price" `
  465. OutTradeNo string `json:"out_trade_no" `
  466. TradeNo string `json:"trade_no"`
  467. OrderStatus int `json:"order_status"`
  468. Phone string `json:"phone"`
  469. FaceTime string `json:"face_time"`
  470. Name string `json:"name" label:"姓名"`
  471. Grade string `json:"grade" label:"年级"`
  472. GradeId int `json:"grade_id" label:"年级id"`
  473. Class string `json:"class" label:"班级"`
  474. ClassId int `json:"class_id" label:"班级id"`
  475. DeviceSn string `json:"device_sn" label:"设备编号"`
  476. CpMerchantId string `json:"cp_merchant_id" label:"商户编码"`
  477. DebtBusinessMsg string `json:"debt_business_msg" label:"欠款原因"`
  478. }
  479. type CentralKitchenForSchoolBatchAskForLeaveReqBySchool struct {
  480. EnterpriseIds []int `json:"enterprise_ids" binding:"required" label:"企业id"`
  481. IsBreakfast int `json:"is_breakfast" label:"是否退早餐(1:退 0:不退)"`
  482. IsLunch int `json:"is_lunch" label:"是否退午餐(1:退 0:不退)"`
  483. IsDinner int `json:"is_dinner" label:"是否退晚餐(1:退 0:不退)"`
  484. Dates []string `json:"dates"`
  485. }
  486. type CentralKitchenForSchoolBatchAskForLeaveReqByGrade struct {
  487. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  488. GradeIds []int `json:"grade_ids" binding:"required" label:"年级id"`
  489. IsBreakfast int `json:"is_breakfast" label:"是否退早餐(1:退 0:不退)"`
  490. IsLunch int `json:"is_lunch" label:"是否退午餐(1:退 0:不退)"`
  491. IsDinner int `json:"is_dinner" label:"是否退晚餐(1:退 0:不退)"`
  492. Dates []string `json:"dates"`
  493. }
  494. type CentralKitchenForSchoolBatchAskForLeaveReqByClass struct {
  495. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  496. GradeId int `json:"grade_id" binding:"required" label:"年级id"`
  497. ClassIds []int `json:"class_ids" label:"班级id"`
  498. IsBreakfast int `json:"is_breakfast" label:"是否退早餐(1:退 0:不退)"`
  499. IsLunch int `json:"is_lunch" label:"是否退午餐(1:退 0:不退)"`
  500. IsDinner int `json:"is_dinner" label:"是否退晚餐(1:退 0:不退)"`
  501. Dates []string `json:"dates"`
  502. }
  503. type ListNursingHomePackageReq struct {
  504. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  505. Page int `json:"page" label:"页码"`
  506. Limit int `json:"limit" label:"每页数量"`
  507. Year string `json:"year" label:"年份"`
  508. Month string `json:"month" label:"月份"`
  509. }
  510. type EnterpriseUserListByNursingHomeResp struct {
  511. List []EnterpriseUserListByNursingHomeStruct `json:"list"`
  512. Total int64 `json:"total"`
  513. }
  514. type EnterpriseUserListByNursingHomeStruct struct {
  515. Id int `json:"id" label:"支付宝昵称"`
  516. Nickname string `json:"nickname" label:"支付宝昵称"`
  517. Phone string `json:"phone" label:"手机号"`
  518. Avatar string `json:"avatar" label:"头像"`
  519. CreateAt string `json:"create_at" label:"创建时间"`
  520. UserIdentities []struct {
  521. Id int `json:"id" label:"身份id"`
  522. IdNo string `json:"id_no" label:"身份证号"`
  523. EnterpriseName string `json:"enterprise_name" label:"单位名"`
  524. Name string `json:"name" label:"姓名"`
  525. } `json:"user_identities" label:"身份列表"`
  526. }
  527. type NursingHomeUserUpdateReq struct {
  528. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  529. Uid int `json:"uid" binding:"required" label:"用户id"`
  530. Nickname string `json:"nickname" binding:"required" label:"支付宝昵称"`
  531. Phone string `json:"phone" binding:"required" label:"手机号"`
  532. BindUserIdentities []struct {
  533. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  534. IdNo string `json:"id_no" label:"身份证号"`
  535. Name string `json:"name" label:"姓名"`
  536. } `json:"user_identities" label:"身份列表"`
  537. }
  538. type NursingHomeOrdListReq struct {
  539. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  540. Limit int `json:"limit" binding:"required"`
  541. Page int `json:"page" binding:"required"`
  542. Name string `json:"name" label:"姓名"`
  543. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  544. Kind int `json:"kind" label:"预定类型"`
  545. Sate int `json:"state" label:"支付状态"`
  546. OrdSate int `json:"ord_state" label:"订单状态"`
  547. Phone string `json:"phone" label:"家长联系电话"`
  548. StartDate string `json:"start_date" label:"开始时间"`
  549. EndDate string `json:"end_date" label:"截止时间"`
  550. }
  551. type NursingHomeOrdListResp struct {
  552. EnterpriseId int `json:"enterprise_id" `
  553. EnterpriseName string `json:"enterprise_name" `
  554. Uid int `json:"uid" `
  555. UserIdentityId int `json:"user_identity_id" `
  556. UserIdentityKind int `json:"user_identity_kind" `
  557. UserIdentityName string `json:"user_identity_name" `
  558. TotalPrice string `json:"total_price" `
  559. Kind int `json:"kind" `
  560. OutTradeNo string `json:"out_trade_no" `
  561. TradeNo string `json:"trade_no"`
  562. State int `json:"state"`
  563. OrdState int `json:"ord_state"`
  564. CreateAt string `json:"create_at"`
  565. Phone string `json:"phone" label:"家长联系电话"`
  566. Name string `json:"name" label:"姓名"`
  567. }
  568. type NursingHomeReserveListReq struct {
  569. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  570. Limit int `json:"limit" binding:"required"`
  571. Page int `json:"page" binding:"required"`
  572. Name string `json:"name" label:"姓名"`
  573. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  574. Kind int `json:"kind" label:"预定类型"`
  575. Phone string `json:"phone" label:"家长联系电话"`
  576. StartDate string `json:"start_date" label:"开始时间"`
  577. EndDate string `json:"end_date" label:"截止时间"`
  578. }
  579. type NursingHomeReserveListResp struct {
  580. Id int `json:"id" `
  581. EnterpriseId int `json:"enterprise_id" `
  582. EnterpriseName string `json:"enterprise_name" `
  583. Uid int `json:"uid" `
  584. UserIdentityId int `json:"user_identity_id" `
  585. UserIdentityName string `json:"user_identity_name" `
  586. Kind int `json:"kind"`
  587. OutTradeNo string `json:"out_trade_no" `
  588. ReserveMonth string `json:"reserve_month"`
  589. CreateAt string `json:"create_at"`
  590. Phone string `json:"phone" label:"家长联系电话"`
  591. }
  592. type NursingHomeOrdRefundReq struct {
  593. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  594. Ids []string `json:"ids" label:"ids" binding:"required"`
  595. }
  596. type NursingHomeUserDeleteReq struct {
  597. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  598. Uids []int `json:"uids" binding:"required" label:"用户id"`
  599. }
  600. type SetBasicNursingHomeReq struct {
  601. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  602. State int32 `json:"state" label:"状态(1:正常 2:冻结)"`
  603. Name string `json:"name" binding:"required" label:"名称"`
  604. IsOpenBreakfast int `json:"is_open_breakfast" label:"是否开启早餐"`
  605. IsOpenLunch int `json:"is_open_lunch" label:"是否开启午餐"`
  606. IsOpenDinner int `json:"is_open_dinner" label:"是否开启晚餐"`
  607. IsOpenReportMealForDay int `json:"is_open_report_meal_for_day" label:"开启按天报餐(1:开启 2:关闭)"`
  608. IsOpenReportMealForMonth int `json:"is_open_report_meal_for_month" label:"开启按月报餐(1:开启 2:关闭)"`
  609. IsOpenReportMealForYear int `json:"is_open_report_meal_for_year" label:"开启按年报餐(1:开启 2:关闭)"`
  610. }
  611. type SetNursingHomeWithSpecReq struct {
  612. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  613. BreakfastUnitPrice string `json:"breakfast_unit_price" binding:"required" label:"早餐-单价"`
  614. LunchUnitPrice string `json:"lunch_unit_price" binding:"required" label:"午餐-单价"`
  615. DinnerUnitPrice string `json:"dinner_unit_price" binding:"required" label:"晚餐-单价"`
  616. }
  617. type SaveNursingHomePackageReq struct {
  618. PackageId int `json:"package_id" label:"套餐ID"`
  619. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  620. Year string `json:"year" binding:"required" label:"年份"`
  621. Month string `json:"month" binding:"required" label:"月份"`
  622. StartDate string `json:"start_date" binding:"required" label:"开始时间"`
  623. EndDate string `json:"end_date" binding:"required" label:"截止时间"`
  624. State int `json:"state" label:"状态(1:可用 2:不可用)"`
  625. DateList []struct {
  626. Date string `json:"date"`
  627. IsOpenBreakfast int32 `json:"is_open_breakfast"`
  628. IsOpenLunch int32 `json:"is_open_lunch"`
  629. IsOpenDinner int32 `json:"is_open_dinner"`
  630. IsOpenReplenish int32 `json:"is_open_replenish"`
  631. } `json:"date_list" binding:"required" label:"日期"`
  632. }