...
|
...
|
@@ -14,6 +14,7 @@ type CreditAccountItem struct { |
|
|
SettlementAmount float64 `json:"settlementAmount"` // 账期结算金额
|
|
|
SettlementTime int64 `json:"settlementTime"` // 共创账期结算时间
|
|
|
CooperationContractNumber string `json:"cooperationContractNumber"` // 关联共创合约编号
|
|
|
Remarks string `json:"remarks"`
|
|
|
Participator struct {
|
|
|
UserName string `json:"userName"` // 用户姓名
|
|
|
UserPhone string `json:"userPhone"` // 用户手机号
|
...
|
...
|
@@ -63,6 +64,7 @@ func ToCreditAccountItem(param *allied_creation_cooperation.CreditAccount, opera |
|
|
CreatedAt: param.CreatedAt.UnixNano() / 1e6, // 创建时间
|
|
|
UpdatedAt: param.UpdatedAt.UnixNano() / 1e6, // 更新时间
|
|
|
AccountDetail: param.AccountDetail,
|
|
|
Remarks: param.Remarks,
|
|
|
AuthFlag: param.Org.OrgID == int(operatorOrgId),
|
|
|
}
|
|
|
if !param.PaymentTime.IsZero() {
|
...
|
...
|
|