...
|
...
|
@@ -13,9 +13,9 @@ type PersonCooperationProjectSharedInfoAttachmentQuery struct { |
|
|
// 用户
|
|
|
UserId int64 `json:"userId" valid:"Required"`
|
|
|
// 项目ID
|
|
|
ProjectId int64 `json:"cooperationProjectId" valid:"Required"`
|
|
|
ProjectId int64 `json:"cooperationProjectId,string" valid:"Required"`
|
|
|
// 合约ID
|
|
|
ContractId int64 `json:"cooperationContractId" valid:"Required"`
|
|
|
ContractId int64 `json:"cooperationContractId,string" valid:"Required"`
|
|
|
// 附件类型 1:合约附件 2:支付凭证
|
|
|
AttachmentType int `json:"attachmentType" valid:"Required"`
|
|
|
}
|
...
|
...
|
|