mirror of https://gitee.com/answerdev/answer.git
16 lines
398 B
Go
16 lines
398 B
Go
package schema
|
|
|
|
type ReasonItem struct {
|
|
ReasonType int `json:"reason_type"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
ContentType string `json:"content_type"`
|
|
}
|
|
|
|
type ReasonReq struct {
|
|
// ObjectType
|
|
ObjectType string `validate:"required" form:"object_type" json:"object_type"`
|
|
// Action
|
|
Action string `validate:"required" form:"action" json:"action"`
|
|
}
|