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

13 lines
348 B

  1. package md
  2. type SuggestedFeedbackListReq struct {
  3. Limit int `json:"limit"`
  4. Page int `json:"page" `
  5. UserIdentityId int `json:"user_identity_id" `
  6. }
  7. type SuggestedFeedbackAddReq struct {
  8. UserIdentityId int `json:"user_identity_id" `
  9. EnterpriseId int `json:"enterprise_id" `
  10. Content string `json:"content" `
  11. }