15 lines
266 B
Go
15 lines
266 B
Go
|
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
|
||
|
}
|