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.
|
- package md
-
- type NoticeAddReq struct {
- Name string `json:"name" binding:"required" label:"名称"`
- Content string `json:"content" label:"内容"`
- }
-
- type NoticeUpdateReq struct {
- Id int `json:"id" binding:"required" label:"公司id"`
- Name string `json:"name" binding:"required" label:"名称"`
- Content string `json:"content" label:"内容"`
- }
|