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

671 lines
33 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" binding:"required" 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" binding:"required" 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 SaveCentralKitchenForSchoolPackageReq struct {
  138. PackageId int `json:"package_id" label:"套餐ID"`
  139. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  140. Year string `json:"year" binding:"required" label:"年份"`
  141. Month string `json:"month" binding:"required" label:"月份"`
  142. StartDate string `json:"start_date" binding:"required" label:"开始时间"`
  143. EndDate string `json:"end_date" binding:"required" label:"截止时间"`
  144. State int `json:"state" label:"状态(1:可用 2:不可用)"`
  145. DateList []struct {
  146. Date string `json:"date"`
  147. IsOpenBreakfast int32 `json:"is_open_breakfast"`
  148. IsOpenLunch int32 `json:"is_open_lunch"`
  149. IsOpenDinner int32 `json:"is_open_dinner"`
  150. IsOpenReplenish int32 `json:"is_open_replenish"`
  151. } `json:"date_list" binding:"required" label:"日期"`
  152. }
  153. type SetBasicCentralKitchenForSchoolReq struct {
  154. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  155. State int32 `json:"state" label:"状态(1:正常 2:冻结)"`
  156. Name string `json:"name" binding:"required" label:"名称"`
  157. IsOpenBreakfast int `json:"is_open_breakfast" label:"是否开启早餐"`
  158. IsOpenLunch int `json:"is_open_lunch" label:"是否开启午餐"`
  159. IsOpenDinner int `json:"is_open_dinner" label:"是否开启晚餐"`
  160. IsOpenReportMealForDay int `json:"is_open_report_meal_for_day" label:"开启按天报餐(1:开启 2:关闭)"`
  161. IsOpenReportMealForMonth int `json:"is_open_report_meal_for_month" label:"开启按月报餐(1:开启 2:关闭)"`
  162. IsOpenReportMealForSemester int `json:"is_open_report_meal_for_semester" label:"开启按学期报餐(1:开启 2:关闭)"`
  163. IsOpenTeacherReportMeal int `json:"is_open_teacher_report_meal" label:"'教师报餐(1:开启 2:关闭)"`
  164. }
  165. type ListCentralKitchenForSchoolPackageReq struct {
  166. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  167. Page int `json:"page" label:"页码"`
  168. Limit int `json:"limit" label:"每页数量"`
  169. Year string `json:"year" label:"年份"`
  170. Month string `json:"month" label:"月份"`
  171. }
  172. type CentralKitchenForSchoolOrdRefundReq struct {
  173. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  174. Ids []string `json:"ids" label:"ids" binding:"required"`
  175. }
  176. type CentralKitchenForSchoolOrdListResp struct {
  177. EnterpriseId int `json:"enterprise_id" `
  178. EnterpriseName string `json:"enterprise_name" `
  179. Uid int `json:"uid" `
  180. UserIdentityId int `json:"user_identity_id" `
  181. UserIdentityKind int `json:"user_identity_kind" `
  182. UserIdentityName string `json:"user_identity_name" `
  183. TotalPrice string `json:"total_price" `
  184. Kind int `json:"kind" `
  185. OutTradeNo string `json:"out_trade_no" `
  186. TradeNo string `json:"trade_no"`
  187. State int `json:"state"`
  188. OrdState int `json:"ord_state"`
  189. CreateAt string `json:"create_at"`
  190. Phone string `json:"phone" label:"家长联系电话"`
  191. Name string `json:"name" label:"姓名"`
  192. Grade string `json:"grade" label:"年级"`
  193. GradeId int `json:"grade_id" label:"年级id"`
  194. Class string `json:"class" label:"班级"`
  195. ClassId int `json:"class_id" label:"班级id"`
  196. }
  197. type CentralKitchenForSchoolOrdListReq struct {
  198. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  199. IsTeacher int `json:"is_teacher" label:"是否教师"`
  200. Limit int `json:"limit" binding:"required"`
  201. Page int `json:"page" binding:"required"`
  202. Name string `json:"name" label:"姓名"`
  203. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  204. Kind int `json:"kind" label:"预定类型"`
  205. Sate int `json:"state" label:"支付状态"`
  206. OrdSate int `json:"ord_state" label:"订单状态"`
  207. GradeId int `json:"grade_id" label:"年级id"`
  208. ClassId int `json:"class_id" label:"班级id"`
  209. Phone string `json:"phone" label:"家长联系电话"`
  210. StartDate string `json:"start_date" label:"开始时间"`
  211. EndDate string `json:"end_date" label:"截止时间"`
  212. }
  213. type CentralKitchenForSchoolReserveListReq struct {
  214. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  215. Limit int `json:"limit" binding:"required"`
  216. Page int `json:"page" binding:"required"`
  217. Name string `json:"name" label:"姓名"`
  218. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  219. Kind int `json:"kind" label:"预定类型"`
  220. GradeId int `json:"grade_id" label:"年级id"`
  221. ClassId int `json:"class_id" label:"班级id"`
  222. Phone string `json:"phone" label:"家长联系电话"`
  223. StartDate string `json:"start_date" label:"开始时间"`
  224. EndDate string `json:"end_date" label:"截止时间"`
  225. }
  226. type CentralKitchenForSchoolReserveListResp struct {
  227. Id int `json:"id" `
  228. EnterpriseId int `json:"enterprise_id" `
  229. EnterpriseName string `json:"enterprise_name" `
  230. Uid int `json:"uid" `
  231. UserIdentityId int `json:"user_identity_id" `
  232. UserIdentityName string `json:"user_identity_name" `
  233. Kind int `json:"kind"`
  234. OutTradeNo string `json:"out_trade_no" `
  235. ReserveMonth string `json:"reserve_month"`
  236. TotalPrice string `json:"total_price"`
  237. CreateAt string `json:"create_at"`
  238. Phone string `json:"phone" label:"家长联系电话"`
  239. Grade string `json:"grade" label:"年级"`
  240. GradeId int `json:"grade_id" label:"年级id"`
  241. Class string `json:"class" label:"班级"`
  242. ClassId int `json:"class_id" label:"班级id"`
  243. }
  244. type SelfSupportForSchoolUserUpdateReq struct {
  245. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  246. Uid int `json:"uid" binding:"required" label:"用户id"`
  247. Nickname string `json:"nickname" binding:"required" label:"支付宝昵称"`
  248. Phone string `json:"phone" binding:"required" label:"手机号"`
  249. BindUserIdentities []struct {
  250. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  251. IdNo string `json:"id_no" label:"身份证号"`
  252. Name string `json:"name" label:"姓名"`
  253. GradeId int `json:"grade_id" label:"年级"`
  254. ClassId int `json:"class_id" label:"班级"`
  255. } `json:"user_identities" label:"身份列表"`
  256. }
  257. type SelfSupportForSchoolUserDeleteReq struct {
  258. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  259. Uids []int `json:"uids" binding:"required" label:"用户id"`
  260. }
  261. type SelfSupportForSchoolStudentListReq struct {
  262. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  263. Limit int `json:"limit" binding:"required"`
  264. Page int `json:"page" binding:"required"`
  265. Name string `json:"name" label:"姓名"`
  266. IdNo string `json:"id_no" label:"身份证号"`
  267. Phone string `json:"phone" label:"手机号"`
  268. GradeId int `json:"grade_id" label:"年级id"`
  269. ClassId int `json:"class_id" label:"班级id"`
  270. }
  271. type SelfSupportForSchoolStudentListResp struct {
  272. IdNo string `json:"id_no" label:"身份证号"`
  273. ParentPhone string `json:"parent_phone" label:"家长电话"`
  274. Name string `json:"name" label:"姓名"`
  275. Grade string `json:"grade" label:"年级"`
  276. GradeId int `json:"grade_id" label:"年级id"`
  277. Class string `json:"class" label:"班级"`
  278. ClassId int `json:"class_id" label:"班级"`
  279. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  280. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采) "`
  281. SchoolFacePassStatus string `json:"school_face_pass_status" label:"校园一脸通行开通状态(开通:OPEN 关闭:CLOSE) "`
  282. SchoolFacePaymentStatus string `json:"school_face_payment_status" label:"校园一脸通行刷脸支付开通状态(开通:OPEN 关闭:CLOSE) "`
  283. }
  284. type SelfSupportForSchoolTeacherListReq struct {
  285. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  286. Limit int `json:"limit" binding:"required"`
  287. Page int `json:"page" binding:"required"`
  288. Name string `json:"name" label:"姓名"`
  289. IdNo string `json:"id_no" label:"身份证号"`
  290. }
  291. type SelfSupportForSchoolTeacherListResp struct {
  292. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  293. IdNo string `json:"id_no" label:"身份证号"`
  294. Phone string `json:"parent_phone" label:"电话"`
  295. Name string `json:"name" label:"姓名"`
  296. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采) "`
  297. SchoolFacePassStatus string `json:"school_face_pass_status" label:"校园一脸通行开通状态(开通:OPEN 关闭:CLOSE) "`
  298. SchoolFacePaymentStatus string `json:"school_face_payment_status" label:"校园一脸通行刷脸支付开通状态(开通:OPEN 关闭:CLOSE) "`
  299. }
  300. type SelfSupportForSchoolStudentUpdateReq struct {
  301. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  302. UserIdentityId int `json:"user_identity_id" binding:"required" label:"用户身份id"`
  303. IdNo string `json:"id_no" label:"身份证号"`
  304. Name string `json:"name" label:"姓名"`
  305. GradeId int `json:"grade_id" label:"年级id"`
  306. ClassId int `json:"class_id" label:"班级id"`
  307. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采)"`
  308. }
  309. type SelfSupportForSchoolStudentDeleteReq struct {
  310. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  311. UserIdentityIds []int `json:"user_identity_ids" binding:"required" label:"用户身份id"`
  312. }
  313. type SelfSupportForSchoolStudentAdmissionReq struct {
  314. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  315. ClassId int `json:"class_id" label:"班级id"`
  316. GradeId int `json:"grade_id" label:"年级id"`
  317. }
  318. type SelfSupportForSchoolTeacherUpdateReq struct {
  319. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  320. UserIdentityId int `json:"user_identity_id" binding:"required" label:"用户身份id"`
  321. IdNo string `json:"id_no" label:"身份证号"`
  322. Name string `json:"name" label:"姓名"`
  323. CollectFaceType int `json:"collect_face_type" label:"采集人脸方式(1:个采 2:集采)"`
  324. }
  325. type SelfSupportForSchoolTeacherDeleteReq struct {
  326. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  327. UserIdentityIds []int `json:"user_identity_ids" binding:"required" label:"用户身份id"`
  328. }
  329. type SelfSupportForSchoolWorkerListReq struct {
  330. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  331. Limit int `json:"limit" binding:"required"`
  332. Page int `json:"page" binding:"required"`
  333. Name string `json:"name" label:"姓名"`
  334. IdNo string `json:"id_no" label:"身份证号"`
  335. }
  336. type SelfSupportForSchoolWorkerListResp struct {
  337. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  338. IdNo string `json:"id_no" label:"身份证号"`
  339. Phone string `json:"parent_phone" label:"电话"`
  340. Name string `json:"name" label:"姓名"`
  341. CreateAt string `json:"create_at" label:"创建时间"`
  342. }
  343. type SelfSupportForSchoolWorkerUpdateReq struct {
  344. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  345. UserIdentityId int `json:"user_identity_id" binding:"required" label:"用户身份id"`
  346. IdNo string `json:"id_no" label:"身份证号"`
  347. Name string `json:"name" label:"姓名"`
  348. }
  349. type SelfSupportForSchoolWorkerDeleteReq struct {
  350. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  351. UserIdentityIds []int `json:"user_identity_ids" binding:"required" label:"用户身份id"`
  352. }
  353. type CentralKitchenForSchoolGradeListReq struct {
  354. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  355. Limit int `json:"limit" binding:"required"`
  356. Page int `json:"page" binding:"required"`
  357. Name string `json:"name" label:"名称"`
  358. }
  359. type CentralKitchenForSchoolClassListReq struct {
  360. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  361. GradeId int `json:"grade_id" label:"年级id"`
  362. Limit int `json:"limit" binding:"required"`
  363. Page int `json:"page" binding:"required"`
  364. Name string `json:"name" label:"名称"`
  365. }
  366. type SelfSupportForSchoolGradeListReq struct {
  367. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  368. Limit int `json:"limit" binding:"required"`
  369. Page int `json:"page" binding:"required"`
  370. Name string `json:"name" label:"名称"`
  371. }
  372. type SelfSupportForSchoolClassListReq struct {
  373. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  374. GradeId int `json:"grade_id" label:"年级id"`
  375. Limit int `json:"limit" binding:"required"`
  376. Page int `json:"page" binding:"required"`
  377. Name string `json:"name" label:"名称"`
  378. }
  379. type SelfSupportForSchoolAddWorkerReq struct {
  380. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  381. Name string `json:"name" label:"名称"`
  382. IdNo string `json:"id_no" label:"身份证号"`
  383. }
  384. type SelfSupportForSchoolAddTeacherReq struct {
  385. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  386. Name string `json:"name" label:"名称"`
  387. IdNo string `json:"id_no" label:"身份证号"`
  388. }
  389. type SelfSupportForSchoolOrdListReq struct {
  390. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  391. Limit int `json:"limit" binding:"required"`
  392. Page int `json:"page" binding:"required"`
  393. Name string `json:"name" label:"姓名"`
  394. Phone string `json:"phone" label:"用户电话"`
  395. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  396. OrderStatus int `json:"order_status" label:"订单状态"`
  397. GradeId int `json:"grade_id" label:"年级id"`
  398. ClassId int `json:"class_id" label:"班级id"`
  399. StartDate string `json:"start_date" label:"刷脸-开始时间"`
  400. EndDate string `json:"end_date" label:"刷脸-截止时间"`
  401. IsTeacher int `json:"is_teacher" label:"是否教师"`
  402. }
  403. type SelfSupportForSchoolArrearsOrdListReq struct {
  404. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  405. Limit int `json:"limit" binding:"required"`
  406. Page int `json:"page" binding:"required"`
  407. Name string `json:"name" label:"姓名"`
  408. Phone string `json:"phone" label:"用户电话"`
  409. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  410. GradeId int `json:"grade_id" label:"年级id"`
  411. ClassId int `json:"class_id" label:"班级id"`
  412. StartDate string `json:"start_date" label:"刷脸-开始时间"`
  413. EndDate string `json:"end_date" label:"刷脸-截止时间"`
  414. IsTeacher int `json:"is_teacher" label:"是否教师"`
  415. }
  416. type SelfSupportForSchoolBlackListReq struct {
  417. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  418. Limit int `json:"limit" binding:"required"`
  419. Page int `json:"page" binding:"required"`
  420. }
  421. type SelfSupportForSchoolArrearsOrdDebtRepayReq struct {
  422. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  423. OutOrderNo string `json:"out_order_no"`
  424. MerchantCode string `json:"merchant_code" `
  425. }
  426. type SelfSupportForSchoolArrearsOrdDebtCancelReq struct {
  427. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  428. OutOrderNo string `json:"out_order_no"`
  429. MerchantCode string `json:"merchant_code" `
  430. }
  431. type SelfSupportForSchoolOrdListResp struct {
  432. EnterpriseId int `json:"enterprise_id" `
  433. EnterpriseName string `json:"enterprise_name" `
  434. Uid int `json:"uid" `
  435. UserIdentityId int `json:"user_identity_id" `
  436. UserIdentityName string `json:"user_identity_name" `
  437. TotalPrice string `json:"total_price" `
  438. OutTradeNo string `json:"out_trade_no" `
  439. TradeNo string `json:"trade_no"`
  440. OrderStatus int `json:"order_status"`
  441. Phone string `json:"phone"`
  442. FaceTime string `json:"face_time"`
  443. Name string `json:"name" label:"姓名"`
  444. Grade string `json:"grade" label:"年级"`
  445. GradeId int `json:"grade_id" label:"年级id"`
  446. Class string `json:"class" label:"班级"`
  447. ClassId int `json:"class_id" label:"班级id"`
  448. DeviceSn string `json:"device_sn" label:"设备编号"`
  449. CpMerchantId string `json:"cp_merchant_id" label:"商户编码"`
  450. }
  451. type CentralKitchenForSchoolBatchAskForLeaveReqBySchool struct {
  452. EnterpriseIds []int `json:"enterprise_id" binding:"required" label:"企业id"`
  453. IsBreakfast int `json:"is_breakfast" label:"是否退早餐(1:退 0:不退)"`
  454. IsLunch int `json:"is_lunch" label:"是否退午餐(1:退 0:不退)"`
  455. IsDinner int `json:"is_dinner" label:"是否退晚餐(1:退 0:不退)"`
  456. Dates []string `json:"dates"`
  457. }
  458. type CentralKitchenForSchoolBatchAskForLeaveReqByGrade struct {
  459. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  460. GradeIds []int `json:"grade_ids" binding:"required" label:"年级id"`
  461. IsBreakfast int `json:"is_breakfast" label:"是否退早餐(1:退 0:不退)"`
  462. IsLunch int `json:"is_lunch" label:"是否退午餐(1:退 0:不退)"`
  463. IsDinner int `json:"is_dinner" label:"是否退晚餐(1:退 0:不退)"`
  464. Dates []string `json:"dates"`
  465. }
  466. type CentralKitchenForSchoolBatchAskForLeaveReqByClass struct {
  467. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  468. GradeId int `json:"grade_id" binding:"required" label:"年级id"`
  469. ClassIds []int `json:"class_ids" label:"班级id"`
  470. IsBreakfast int `json:"is_breakfast" label:"是否退早餐(1:退 0:不退)"`
  471. IsLunch int `json:"is_lunch" label:"是否退午餐(1:退 0:不退)"`
  472. IsDinner int `json:"is_dinner" label:"是否退晚餐(1:退 0:不退)"`
  473. Dates []string `json:"dates"`
  474. }
  475. type ListNursingHomePackageReq struct {
  476. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  477. Page int `json:"page" label:"页码"`
  478. Limit int `json:"limit" label:"每页数量"`
  479. Year string `json:"year" label:"年份"`
  480. Month string `json:"month" label:"月份"`
  481. }
  482. type EnterpriseUserListByNursingHomeResp struct {
  483. List []EnterpriseUserListByNursingHomeStruct `json:"list"`
  484. Total int64 `json:"total"`
  485. }
  486. type EnterpriseUserListByNursingHomeStruct struct {
  487. Id int `json:"id" label:"支付宝昵称"`
  488. Nickname string `json:"nickname" label:"支付宝昵称"`
  489. Phone string `json:"phone" label:"手机号"`
  490. Avatar string `json:"avatar" label:"头像"`
  491. CreateAt string `json:"create_at" label:"创建时间"`
  492. UserIdentities []struct {
  493. Id int `json:"id" label:"身份id"`
  494. IdNo string `json:"id_no" label:"身份证号"`
  495. EnterpriseName string `json:"enterprise_name" label:"单位名"`
  496. Name string `json:"name" label:"姓名"`
  497. } `json:"user_identities" label:"身份列表"`
  498. }
  499. type NursingHomeUserUpdateReq struct {
  500. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  501. Uid int `json:"uid" binding:"required" label:"用户id"`
  502. Nickname string `json:"nickname" binding:"required" label:"支付宝昵称"`
  503. Phone string `json:"phone" binding:"required" label:"手机号"`
  504. BindUserIdentities []struct {
  505. UserIdentityId int `json:"user_identity_id" label:"用户身份id"`
  506. IdNo string `json:"id_no" label:"身份证号"`
  507. Name string `json:"name" label:"姓名"`
  508. } `json:"user_identities" label:"身份列表"`
  509. }
  510. type NursingHomeOrdListReq struct {
  511. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  512. Limit int `json:"limit" binding:"required"`
  513. Page int `json:"page" binding:"required"`
  514. Name string `json:"name" label:"姓名"`
  515. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  516. Kind int `json:"kind" label:"预定类型"`
  517. Sate int `json:"state" label:"支付状态"`
  518. OrdSate int `json:"ord_state" label:"订单状态"`
  519. Phone string `json:"phone" label:"家长联系电话"`
  520. StartDate string `json:"start_date" label:"开始时间"`
  521. EndDate string `json:"end_date" label:"截止时间"`
  522. }
  523. type NursingHomeOrdListResp struct {
  524. EnterpriseId int `json:"enterprise_id" `
  525. EnterpriseName string `json:"enterprise_name" `
  526. Uid int `json:"uid" `
  527. UserIdentityId int `json:"user_identity_id" `
  528. UserIdentityKind int `json:"user_identity_kind" `
  529. UserIdentityName string `json:"user_identity_name" `
  530. TotalPrice string `json:"total_price" `
  531. Kind int `json:"kind" `
  532. OutTradeNo string `json:"out_trade_no" `
  533. TradeNo string `json:"trade_no"`
  534. State int `json:"state"`
  535. OrdState int `json:"ord_state"`
  536. CreateAt string `json:"create_at"`
  537. Phone string `json:"phone" label:"家长联系电话"`
  538. Name string `json:"name" label:"姓名"`
  539. }
  540. type NursingHomeReserveListReq struct {
  541. EnterpriseId int `json:"enterprise_id" label:"企业id"`
  542. Limit int `json:"limit" binding:"required"`
  543. Page int `json:"page" binding:"required"`
  544. Name string `json:"name" label:"姓名"`
  545. OutTradeNo string `json:"out_trade_no" label:"订单号"`
  546. Kind int `json:"kind" label:"预定类型"`
  547. Phone string `json:"phone" label:"家长联系电话"`
  548. StartDate string `json:"start_date" label:"开始时间"`
  549. EndDate string `json:"end_date" label:"截止时间"`
  550. }
  551. type NursingHomeReserveListResp struct {
  552. Id int `json:"id" `
  553. EnterpriseId int `json:"enterprise_id" `
  554. EnterpriseName string `json:"enterprise_name" `
  555. Uid int `json:"uid" `
  556. UserIdentityId int `json:"user_identity_id" `
  557. UserIdentityName string `json:"user_identity_name" `
  558. Kind int `json:"kind"`
  559. OutTradeNo string `json:"out_trade_no" `
  560. ReserveMonth string `json:"reserve_month"`
  561. CreateAt string `json:"create_at"`
  562. Phone string `json:"phone" label:"家长联系电话"`
  563. }
  564. type NursingHomeOrdRefundReq struct {
  565. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  566. Ids []string `json:"ids" label:"ids" binding:"required"`
  567. }
  568. type NursingHomeUserDeleteReq struct {
  569. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  570. Uids []int `json:"uids" binding:"required" label:"用户id"`
  571. }
  572. type SetBasicNursingHomeReq struct {
  573. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  574. State int32 `json:"state" label:"状态(1:正常 2:冻结)"`
  575. Name string `json:"name" binding:"required" label:"名称"`
  576. IsOpenBreakfast int `json:"is_open_breakfast" label:"是否开启早餐"`
  577. IsOpenLunch int `json:"is_open_lunch" label:"是否开启午餐"`
  578. IsOpenDinner int `json:"is_open_dinner" label:"是否开启晚餐"`
  579. IsOpenReportMealForDay int `json:"is_open_report_meal_for_day" label:"开启按天报餐(1:开启 2:关闭)"`
  580. IsOpenReportMealForMonth int `json:"is_open_report_meal_for_month" label:"开启按月报餐(1:开启 2:关闭)"`
  581. IsOpenReportMealForYear int `json:"is_open_report_meal_for_year" label:"开启按年报餐(1:开启 2:关闭)"`
  582. }
  583. type SetNursingHomeWithSpecReq struct {
  584. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  585. BreakfastUnitPrice string `json:"breakfast_unit_price" binding:"required" label:"早餐-单价"`
  586. LunchUnitPrice string `json:"lunch_unit_price" binding:"required" label:"午餐-单价"`
  587. DinnerUnitPrice string `json:"dinner_unit_price" binding:"required" label:"晚餐-单价"`
  588. }
  589. type SaveNursingHomePackageReq struct {
  590. PackageId int `json:"package_id" label:"套餐ID"`
  591. EnterpriseId int `json:"enterprise_id" binding:"required" label:"企业id"`
  592. Year string `json:"year" binding:"required" label:"年份"`
  593. Month string `json:"month" binding:"required" label:"月份"`
  594. StartDate string `json:"start_date" binding:"required" label:"开始时间"`
  595. EndDate string `json:"end_date" binding:"required" label:"截止时间"`
  596. State int `json:"state" label:"状态(1:可用 2:不可用)"`
  597. DateList []struct {
  598. Date string `json:"date"`
  599. IsOpenBreakfast int32 `json:"is_open_breakfast"`
  600. IsOpenLunch int32 `json:"is_open_lunch"`
  601. IsOpenDinner int32 `json:"is_open_dinner"`
  602. IsOpenReplenish int32 `json:"is_open_replenish"`
  603. } `json:"date_list" binding:"required" label:"日期"`
  604. }