| 84 | } |
| 85 | |
| 86 | type GetRoleRequest struct { |
| 87 | Id int `json:"id" binding:"required,gt=0"` // 角色ID |
| 88 | } |
| 89 | |
| 90 | type UpdateRoleRequest struct { |
| 91 | Id int `json:"id" binding:"required,gt=0"` // 角色ID |
nothing calls this directly
no outgoing calls
no test coverage detected