...
|
...
|
@@ -19,13 +19,16 @@ type CreditAccountItem struct { |
|
|
UserPhone string `json:"userPhone"` // 用户手机号
|
|
|
UserType int `json:"userType"` // 用户类型,1员工,2共创用户,3公开
|
|
|
} `json:"participator"` // 参与人
|
|
|
ParticipateType string `json:"participateType"` // 参与类型
|
|
|
PaymentDocumentAttachment domain.Attachment `json:"paymentDocumentAttachment"` // 支付凭证附件
|
|
|
Org domain.Org `json:"org"` // 数据所属组织机构
|
|
|
Company domain.CompanyData `json:"company"` // 公司
|
|
|
CreatedAt int64 `json:"createdAt"` // 创建时间
|
|
|
UpdatedAt int64 `json:"updatedAt"` // 更新时间
|
|
|
AccountDetail []struct {
|
|
|
ParticipateType string `json:"participateType"` // 参与类型
|
|
|
PaymentDocumentAttachment domain.Attachment `json:"paymentDocumentAttachment"` // 支付凭证附件
|
|
|
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"` // 更新时间
|
|
|
AccountDetail []struct {
|
|
|
DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"`
|
|
|
DividendsType int `json:"dividendsType"`
|
|
|
DividendsAmount float64 `json:"dividendsAmount"`
|
...
|
...
|
@@ -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
|
...
|
...
|
|