作者 Your Name

Merge branch 'dev' into test

... ... @@ -23,6 +23,7 @@ func (srv *CreditAccountService) ListCreditAccount(listQuery *query.ListCreditAc
CreditAccountOrderNum: listQuery.CreditAccountOrderNum,
ParticipatorName: listQuery.Participator,
CompanyId: listQuery.Operator.CompanyId,
OrgIds: listQuery.Operator.OrgIds,
})
if err != nil {
return 0, nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
... ...
... ... @@ -79,6 +79,7 @@ func (dividendsEstimateService *DividendsEstimateService) SearchDividendsEstimat
PageNumber: searchDividendsEstimateQuery.PageNumber,
PageSize: searchDividendsEstimateQuery.PageSize,
CompanyId: searchDividendsEstimateQuery.Operator.CompanyId,
OrgIds: searchDividendsEstimateQuery.Operator.OrgIds,
})
if err != nil {
return 0, nil, application.ThrowError(application.TRANSACTION_ERROR, err.Error())
... ...
... ... @@ -47,6 +47,7 @@ type (
PageSize int `json:"pageSize"`
CompanyId int64 `json:"companyId"` // 公司ID,通过集成REST上下文获取
OrgId int64 `json:"orgId"` // 组织机构ID
OrgIds []int64 `json:"orgIds"` //用户关联的组织
UserId int64 `json:"userId"` // 用户ID,
UserBaseId int64 ` json:"userBaseId"` // 用户基础数据id
}
... ...