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 }