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.
|
- 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:"内容"`
- }
|