作者 tangxuhui
@@ -51,7 +51,7 @@ type DividendsEstimateMoneyItem struct { @@ -51,7 +51,7 @@ type DividendsEstimateMoneyItem struct {
51 DepartmentName string `json:"departmentName"` 51 DepartmentName string `json:"departmentName"`
52 } `json:"department"` //发起部门 52 } `json:"department"` //发起部门
53 CooperationContractSponsorName string `json:"cooperationContractSponsorName"` 53 CooperationContractSponsorName string `json:"cooperationContractSponsorName"`
54 - StageAndUndertaker struct { 54 + StageAndUndertaker []struct {
55 Stage int `json:"stage"` // 分红阶段 55 Stage int `json:"stage"` // 分红阶段
56 Undertakers []struct { 56 Undertakers []struct {
57 UndertakerId int `json:"undertakerId,string"` // 承接人id 57 UndertakerId int `json:"undertakerId,string"` // 承接人id
@@ -17,7 +17,7 @@ type CooperationContract struct { @@ -17,7 +17,7 @@ type CooperationContract struct {
17 DepartmentId int `json:"departmentId,string"` 17 DepartmentId int `json:"departmentId,string"`
18 DepartmentName string `json:"departmentName"` 18 DepartmentName string `json:"departmentName"`
19 DepartmentNumber string `json:"departmentNumber"` 19 DepartmentNumber string `json:"departmentNumber"`
20 - } `jsopn:"department" json:"department"` //发起部门 20 + } `jsopn:"department"` //发起部门
21 CooperationContractSponsor struct { 21 CooperationContractSponsor struct {
22 UserId int `json:"userId,string"` //id 22 UserId int `json:"userId,string"` //id
23 UserInfo struct { 23 UserInfo struct {
@@ -18,7 +18,7 @@ type ( @@ -18,7 +18,7 @@ type (
18 OrderGoodId int `json:"orderGoodId,string"` 18 OrderGoodId int `json:"orderGoodId,string"`
19 // 共创合约编号 19 // 共创合约编号
20 CooperationContractNumber string `json:"cooperationContractNumber"` 20 CooperationContractNumber string `json:"cooperationContractNumber"`
21 - // 分红订单号或退货单号 21 + // 分红订单号或退货单号
22 OrderNumber string `json:"orderNumber"` 22 OrderNumber string `json:"orderNumber"`
23 // 来源单号 23 // 来源单号
24 OriginalOrderNum string `json:"originalOrderNum"` 24 OriginalOrderNum string `json:"originalOrderNum"`
@@ -26,12 +26,13 @@ type ( @@ -26,12 +26,13 @@ type (
26 CustomerName string `json:"customerName"` 26 CustomerName string `json:"customerName"`
27 // 订单区域 27 // 订单区域
28 RegionName string `json:"region"` 28 RegionName string `json:"region"`
29 - //货品名称 29 + // 货品名称
30 OrderGoodName string `json:"orderGoodName"` 30 OrderGoodName string `json:"orderGoodName"`
31 // 订单金额 31 // 订单金额
32 OrderAmount float64 `json:"orderAmount"` 32 OrderAmount float64 `json:"orderAmount"`
33 // 订单/退货单日期 33 // 订单/退货单日期
34 OrderDate time.Time `json:"orderDate"` 34 OrderDate time.Time `json:"orderDate"`
  35 + OrgId int `json:"orgId"`
35 } `json:"list"` 36 } `json:"list"`
36 } 37 }
37 ) 38 )
@@ -121,7 +122,7 @@ type ( @@ -121,7 +122,7 @@ type (
121 } `json:"department"` //发起部门 122 } `json:"department"` //发起部门
122 // 共创合约发起人 123 // 共创合约发起人
123 CooperationContractSponsorName string `json:"cooperationContractSponsor"` 124 CooperationContractSponsorName string `json:"cooperationContractSponsor"`
124 - StageAndUndertaker struct { 125 + StageAndUndertaker []struct {
125 Stage int `json:"stage"` // 分红阶段 126 Stage int `json:"stage"` // 分红阶段
126 Undertakers []struct { 127 Undertakers []struct {
127 UndertakerId int `json:"undertakerId,string"` // 承接人id 128 UndertakerId int `json:"undertakerId,string"` // 承接人id