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

14 lines
305 B

  1. package md
  2. import "applet/app/db/model"
  3. type EnterpriseDetailRespV2 struct {
  4. Enterprise model.Enterprise `json:"enterprise"`
  5. GradeList []GradeListStructV2 `json:"grade_list"`
  6. }
  7. type GradeListStructV2 struct {
  8. Grade model.Grade `json:"grade"`
  9. ClassList []model.Class `json:"class_list"`
  10. }