...
|
...
|
@@ -16,16 +16,22 @@ type CreditAccount struct { |
|
|
SettlementTime time.Time `json:"settlementTime"` // 共创账期结算时间
|
|
|
CooperationContractNumber string `json:"cooperationContractNumber"` // 关联共创合约编号
|
|
|
Participator struct {
|
|
|
UserId int `json:"userId,string,"` // 用户ID,
|
|
|
UserBaseId int `json:"userBaseId,string,"` // 用户基本id
|
|
|
// Org domain.Org `json:"org"` // 用户所属的组织机构
|
|
|
// Department domain.Department `json:"department"` // 用户所属的部门
|
|
|
UserInfo domain.UserInfo `json:"userInfo"` //
|
|
|
UserName string `json:"userName"` // 用户姓名
|
|
|
UserPhone string `json:"userPhone"` // 用户手机号
|
|
|
UserType int `json:"userType"` // 用户类型,1员工,2共创用户,3公开
|
|
|
Status int `json:"status"` // 状态
|
|
|
UserId int `json:"userId,string,"` // 用户ID,
|
|
|
UserBaseId int `json:"userBaseId,string,"` // 用户基本id
|
|
|
UserInfo domain.UserInfo `json:"userInfo"` //
|
|
|
UserName string `json:"userName"` // 用户姓名
|
|
|
UserPhone string `json:"userPhone"` // 用户手机号
|
|
|
UserType int `json:"userType"` // 用户类型,1员工,2共创用户,3公开
|
|
|
Status int `json:"status"` // 状态
|
|
|
} `json:"participator"` // 参与人
|
|
|
// 操作人
|
|
|
Operator struct {
|
|
|
UserId int `json:"userId,string,"` // 用户ID,
|
|
|
UserBaseId int `json:"userBaseId,string,"` // 用户基本id
|
|
|
UserName string `json:"userName"` // 用户姓名
|
|
|
UserPhone string `json:"userPhone"` // 用户手机号
|
|
|
UserInfo domain.UserInfo `json:"userInfo"` //
|
|
|
} `json:"operator"`
|
|
|
ParticipateType string `json:"participateType"` // 参与类型
|
|
|
PaymentDocumentAttachment domain.Attachment `json:"paymentDocumentAttachment"` // 支付凭证附件
|
|
|
Org domain.Org `json:"org"` // 数据所属组织机构
|
...
|
...
|
@@ -34,7 +40,7 @@ type CreditAccount struct { |
|
|
UpdatedAt time.Time `json:"updatedAt"` // 更新时间
|
|
|
AccountDetail []struct {
|
|
|
DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"`
|
|
|
DividendsType string `json:"dividendsType"`
|
|
|
DividendsType int `json:"dividendsType"`
|
|
|
DividendsAmount float64 `json:"dividendsAmount"`
|
|
|
} `json:"accountDetail"` //结算明细
|
|
|
}
|
...
|
...
|
@@ -106,3 +112,13 @@ type ( |
|
|
CreditAccount
|
|
|
}
|
|
|
)
|
|
|
|
|
|
//创建账期结算
|
|
|
type (
|
|
|
ReqCreditAccountsAdd struct {
|
|
|
DividendsEstimateIds []string `json:"dividendsEstimateIdss"`
|
|
|
}
|
|
|
|
|
|
DataCreditAccountsAdd []struct {
|
|
|
}
|
|
|
) |
...
|
...
|
|