account_detail.go
705 字节
package domain
type AccountDetail struct {
// 分红预算单号ID
DividendsEstimateOrderId int64 `json:"dividendsEstimateOrderId"`
// 分红预算单编号
DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"`
// 分红类型,1订单分红,2退货冲销,3金额激励
DividendsType int32 `json:"dividendsType"`
// 分红金额
DividendsAmount float64 `json:"dividendsAmount"`
// 产品ID
OrderGoodId int64 `json:"orderGoodId"`
// 订单产品金额
OrderGoodAmount float64 `json:"orderGoodAmount"`
// 关联共创合约编号
CooperationContractNumber string `json:"cooperationContractNumber"`
// 参与类型
ParticipateType string `json:"participateType"`
}