...
|
...
|
@@ -21,7 +21,10 @@ type CreditAccountItem struct { |
|
|
} `json:"participator"` // 参与人
|
|
|
ParticipateType string `json:"participateType"` // 参与类型
|
|
|
PaymentDocumentAttachment domain.Attachment `json:"paymentDocumentAttachment"` // 支付凭证附件
|
|
|
Org domain.Org `json:"org"` // 数据所属组织机构
|
|
|
Org struct {
|
|
|
OrgID int `json:"orgId,string"`
|
|
|
OrgName string `json:"orgName"`
|
|
|
} `json:"org"` // 数据所属组织机构
|
|
|
Company domain.CompanyData `json:"company"` // 公司
|
|
|
CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
UpdatedAt int64 `json:"updatedAt"` // 更新时间
|
...
|
...
|
@@ -55,12 +58,13 @@ func ToCreditAccountItem(param *allied_creation_cooperation.CreditAccount) *Cred |
|
|
CooperationContractNumber: param.CooperationContractNumber,
|
|
|
ParticipateType: param.ParticipateType, // 参与类型
|
|
|
PaymentDocumentAttachment: param.PaymentDocumentAttachment, // 支付凭证附件
|
|
|
Org: param.Org, // 数据所属组织机构
|
|
|
Company: param.Company, // 公司
|
|
|
CreatedAt: param.CreatedAt.UnixNano() / 1e6, // 创建时间
|
|
|
UpdatedAt: param.UpdatedAt.UnixNano() / 1e6, // 更新时间
|
|
|
AccountDetail: param.AccountDetail,
|
|
|
}
|
|
|
data.Org.OrgID = param.Org.OrgID
|
|
|
data.Org.OrgName = param.Org.OrgName
|
|
|
data.Participator.UserName = param.Participator.UserName
|
|
|
data.Participator.UserPhone = param.Participator.UserPhone
|
|
|
data.Participator.UserType = param.Participator.UserType
|
...
|
...
|
|