dividend.go 1.1 KB
package controllers

import (
	"gitlab.fjmaimaimai.com/mmm-go/partner/pkg/application/dividend"
	"gitlab.fjmaimaimai.com/mmm-go/partner/pkg/protocol"
)

type DividendController struct {
	BaseController
}

//DividendStatistics
func (this *DividendController) DividendStatistics() {
	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)
	msg = protocol.NewReturnResponse(dividend.Statistics(header, request))
}

//DividendOrders 分红订单
func (this *DividendController) DividendOrders() {
	var msg *protocol.ResponseMessage
	defer func() {
		this.Resp(msg)
	}()
	var request *protocol.DividendOrdersRequest
	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)
	msg = protocol.NewReturnResponse(dividend.OrderList(header, request))
}