...
|
...
|
@@ -9,7 +9,7 @@ type DividendController struct { |
|
|
BaseController
|
|
|
}
|
|
|
|
|
|
//DividendStatistics
|
|
|
// DividendStatistics
|
|
|
func (this *DividendController) DividendStatistics() {
|
|
|
var msg *protocol.ResponseMessage
|
|
|
defer func() {
|
...
|
...
|
@@ -31,7 +31,29 @@ func (this *DividendController) DividendStatistics() { |
|
|
msg = protocol.NewReturnResponse(dividend.Statistics(header, request))
|
|
|
}
|
|
|
|
|
|
//DividendOrders 分红订单
|
|
|
// DividendStatisticsV2 分红统计
|
|
|
func (this *DividendController) DividendStatisticsV2() {
|
|
|
var msg *protocol.ResponseMessage
|
|
|
defer func() {
|
|
|
this.Resp(msg)
|
|
|
}()
|
|
|
var request *protocol.DividendStatisticsRequest
|
|
|
if err := this.JsonUnmarshal(&request); err != nil {
|
|
|
msg = protocol.BadRequestParam(1)
|
|
|
return
|
|
|
}
|
|
|
if b, m := this.Valid(request); !b {
|
|
|
msg = m
|
|
|
return
|
|
|
}
|
|
|
header := this.GetRequestHeader(this.Ctx)
|
|
|
if request.PartnerId == 0 {
|
|
|
request.PartnerId = header.UserId
|
|
|
}
|
|
|
msg = protocol.NewReturnResponse(dividend.StatisticsV2(header, request))
|
|
|
}
|
|
|
|
|
|
// DividendOrders 分红订单
|
|
|
func (this *DividendController) DividendOrders() {
|
|
|
var msg *protocol.ResponseMessage
|
|
|
defer func() {
|
...
|
...
|
|