service/api/message/request/HYGBaseReq.go

15 lines
266 B
Go
Raw Normal View History

2024-06-17 22:25:43 +08:00
package request
type HYGBaseReq struct {
CooperatorId string `json:"cooperatorId"`
Sign string `json:"sign"`
}
func (req *HYGBaseReq) SetSign(sign string) {
req.Sign = sign
}
func (req *HYGBaseReq) GetCooperatorId() string {
return req.CooperatorId
}