智慧食堂
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

md_notice.go 363 B

1 rok temu
123456789101112
  1. package md
  2. type NoticeAddReq struct {
  3. Name string `json:"name" binding:"required" label:"名称"`
  4. Content string `json:"content" label:"内容"`
  5. }
  6. type NoticeUpdateReq struct {
  7. Id int `json:"id" binding:"required" label:"公司id"`
  8. Name string `json:"name" binding:"required" label:"名称"`
  9. Content string `json:"content" label:"内容"`
  10. }