dividend_estimates_dto.go
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package dto
type DividendsEstimatesDto struct {
CooperationProjectNumber string `json:"cooperationProjectNumber"`
DividendsAccountStatus int `json:"dividendsAccountStatus"`
DividendsAmount float64 `json:"dividendsAmount"`
DividendsOrderAmount float64 `json:"dividendsOrderAmount"`
// 客户姓名
CustomerName string `json:"customerName"`
// 订单产品名称
OrderGoodName string `json:"orderGoodName"`
DividendsEstimateID int `json:"dividendsEstimateId"`
DividendsEstimateOrderNumber string `json:"dividendsEstimateOrderNumber"`
DividendsEstimateTime int64 `json:"dividendsEstimateTime"`
DividendsParticipateType int `json:"dividendsParticipateType"`
DividendsType int `json:"dividendsType"`
DividendsUser struct {
UserID int `json:"userId"`
UserInfo struct {
//UserAccount string `json:"userAccount"`
//UserAvatar string `json:"userAvatar"`
//UserEmail string `json:"userEmail"`
UserName string `json:"userName"`
// UserPhone string `json:"userPhone"`
} `json:"userInfo"`
UserType int `json:"userType"`
} `json:"dividendsUser"`
OrderOrReturnedOrderNum string `json:"orderOrReturnedOrderNum"`
}
func (d *DividendsEstimatesDto) LoadDto() {
}
func NewDividendsEstimatesDto() *DividendsEstimatesDto {
return &DividendsEstimatesDto{
CooperationProjectNumber: "xxfdilm00256",
}
}