正在显示
1 个修改的文件
包含
2 行增加
和
0 行删除
@@ -14,6 +14,7 @@ type CreditAccountItem struct { | @@ -14,6 +14,7 @@ type CreditAccountItem struct { | ||
14 | SettlementAmount float64 `json:"settlementAmount"` // 账期结算金额 | 14 | SettlementAmount float64 `json:"settlementAmount"` // 账期结算金额 |
15 | SettlementTime int64 `json:"settlementTime"` // 共创账期结算时间 | 15 | SettlementTime int64 `json:"settlementTime"` // 共创账期结算时间 |
16 | CooperationContractNumber string `json:"cooperationContractNumber"` // 关联共创合约编号 | 16 | CooperationContractNumber string `json:"cooperationContractNumber"` // 关联共创合约编号 |
17 | + Remarks string `json:"remarks"` | ||
17 | Participator struct { | 18 | Participator struct { |
18 | UserName string `json:"userName"` // 用户姓名 | 19 | UserName string `json:"userName"` // 用户姓名 |
19 | UserPhone string `json:"userPhone"` // 用户手机号 | 20 | UserPhone string `json:"userPhone"` // 用户手机号 |
@@ -63,6 +64,7 @@ func ToCreditAccountItem(param *allied_creation_cooperation.CreditAccount, opera | @@ -63,6 +64,7 @@ func ToCreditAccountItem(param *allied_creation_cooperation.CreditAccount, opera | ||
63 | CreatedAt: param.CreatedAt.UnixNano() / 1e6, // 创建时间 | 64 | CreatedAt: param.CreatedAt.UnixNano() / 1e6, // 创建时间 |
64 | UpdatedAt: param.UpdatedAt.UnixNano() / 1e6, // 更新时间 | 65 | UpdatedAt: param.UpdatedAt.UnixNano() / 1e6, // 更新时间 |
65 | AccountDetail: param.AccountDetail, | 66 | AccountDetail: param.AccountDetail, |
67 | + Remarks: param.Remarks, | ||
66 | AuthFlag: param.Org.OrgID == int(operatorOrgId), | 68 | AuthFlag: param.Org.OrgID == int(operatorOrgId), |
67 | } | 69 | } |
68 | if !param.PaymentTime.IsZero() { | 70 | if !param.PaymentTime.IsZero() { |
-
请 注册 或 登录 后发表评论