This commit is contained in:
邹宗楠
2025-07-17 11:09:03 +08:00
parent 67ce43a19a
commit 6f8e962ea4
4 changed files with 78 additions and 25 deletions

View File

@@ -251,6 +251,12 @@ type ApplyContractParam struct {
RetUrl string `json:"ret_url"` // 电子合同签约结果回调通知 C String(128) 成功签约才通知
}
type ApplyContract struct {
Code string `json:"code"`
Msg string `json:"msg"`
RespData *ApplyContractResp `json:"resp_data"`
}
// ApplyContractResp 签约响应参数
type ApplyContractResp struct {
OrderNo string `json:"order_no"`