service/api/message/request/HYG10010001Req.go

24 lines
1.3 KiB
Go
Raw Normal View History

2024-06-15 11:41:12 +08:00
package request
2024-06-15 19:06:47 +08:00
// 下发(打款)报文
type HYG10010001Req struct {
CooperatorId string `json:"cooperatorId"` // 商户id
Timestamp string `json:"timestamp"` // 时间戳
WorkerName string `json:"workerName"` // 收款人姓名
ReceiptChannel int `json:"receiptChannel"` // 收款渠道
WorkerAccount string `json:"workerAccount"` // 收款人账号
WorkerType int `json:"workerType"` // 职业者证件类型
IdNumber string `json:"idNumber"` // 职业者身份证号码
WorkerMobile string `json:"workerMobile"` // 职业者手机号码
DistributeAmount string `json:"distributeAmount"` // 打款金额
RequestNo string `json:"requestNo"` // 下发请求单号
CallbackUrl string `json:"callbackUrl"` // 下发结果回调地址
Remark string `json:"remark"` // 备注
WorkerContent string `json:"workerContent"` // 任务描述
WageStatement string `json:"wageStatement"` // 服务费说明
WorkTime string `json:"workTime"` // 服务时间
PositionId string `json:"positionId"` // 任务ID
WeChatAppId string `json:"weChatAppId"` // 微信下发指定AppID
Sign string `json:"sign"` // 签名
}