This commit is contained in:
邹宗楠
2025-08-28 18:00:43 +08:00
parent f51dd7226f
commit 8a0dae350b
3 changed files with 31 additions and 2 deletions

View File

@@ -269,15 +269,17 @@ type ApplyContractResp struct {
// ApplyContractByPeople 电子合同申请人工复合
type ApplyContractByPeople struct {
Version string `json:"version"`
OrderNo string `json:"order_no"` // 建议:平台编号+14位年月日时24小时制分秒+8位的随机数同一接入机构不重复
OrgId int `json:"org_id"` // 签约方所属拉卡拉机构
EcApplyId int64 `json:"ec_apply_id"` // 申请接口反馈编号
FileData []ApplyContractFileType `json:"file_data"` // 附件信息集合
RetUrl string `json:"ret_url"` // 回调接口
ApplyDesc string `json:"apply_desc"` // 复议提交的原因说明
}
type ApplyContractFileType struct {
AttachType string `json:"attach_type"`
AttachExtName string `json:"attach_ext_name"`
AttachName string `json:"attach_name"`
AttachStorePath string `json:"attach_store_path"`
}