修改商户附件字段名称

- 将 FileData 结构体中的 AttField 字段重命名为 AttFileId
- 保持 AttType 字段不变
- 更新相关注释说明文件编号的含义
menu v1.0.12
maguodong 2025-10-16 16:46:07 +08:00
parent de64d7b076
commit 7777630306
1 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ type FeeData struct {
// FileData 附件集合结构体 // FileData 附件集合结构体
type FileData struct { type FileData struct {
AttField string `json:"attField"` // 文件编号/附件上传后返回的编号,必填 AttFileId string `json:"attFileId"` // 文件编号/附件上传后返回的编号,必填
AttType string `json:"attType"` // 附件类型,必填 AttType string `json:"attType"` // 附件类型,必填
} }