27 lines
1.3 KiB
Go
27 lines
1.3 KiB
Go
package request
|
|
|
|
// 下发(打款)报文
|
|
type HYG10010001Req struct {
|
|
*HYGBaseReq
|
|
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
|
|
}
|
|
|
|
func (req *HYG10010001Req) GetArgString() string {
|
|
return ""
|
|
}
|