...
|
...
|
@@ -207,8 +207,8 @@ func (ptr *CooperationStatisticsService) cooperationModeStatistics(mode *domain. |
|
|
func (ptr *CooperationStatisticsService) CompanyDividendsStatistics(queryOptions map[string]interface{}) (interface{}, error) {
|
|
|
// 参数验证
|
|
|
var request = struct {
|
|
|
CompanyId int64 `json:"companyId" valid:"Required"`
|
|
|
OrgId int64 `json:"orgId" valid:"Required"`
|
|
|
CompanyId int64 `json:"companyId" ` //valid:"Required"
|
|
|
OrgId int64 `json:"orgId" ` //valid:"Required"
|
|
|
Action int `json:"action" valid:"Required"`
|
|
|
}{}
|
|
|
if err := LoadQueryObject(queryOptions, &request); err != nil {
|
...
|
...
|
|