| | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.core.annotation.Java110Cmd; |
| | | import com.java110.core.context.ICmdDataFlowContext; |
| | | import com.java110.core.event.cmd.AbstractServiceCmdListener; |
| | | import com.java110.core.event.cmd.Cmd; |
| | | import com.java110.core.event.cmd.CmdEvent; |
| | | import com.java110.dto.basePrivilege.BasePrivilegeDto; |
| | | import com.java110.dto.owner.OwnerAppUserDto; |
| | |
| | | import java.util.Map; |
| | | |
| | | @Java110Cmd(serviceCode = "owner.listAuditAppUserBindingOwners") |
| | | public class ListAuditAppUserBindingOwnersCmd extends AbstractServiceCmdListener { |
| | | public class ListAuditAppUserBindingOwnersCmd extends Cmd { |
| | | |
| | | @Autowired |
| | | private IOwnerAppUserInnerServiceSMO ownerAppUserInnerServiceSMOImpl; |
| | |
| | | //获取当前用户id |
| | | String userId = reqJson.getString("userId"); |
| | | OwnerAppUserDto ownerAppUserDto = BeanConvertUtil.covertBean(reqJson, OwnerAppUserDto.class); |
| | | |
| | | ownerAppUserDto.setUserId(""); |
| | | int count = ownerAppUserInnerServiceSMOImpl.queryOwnerAppUsersCount(ownerAppUserDto); |
| | | |
| | | List<ApiAuditAppUserBindingOwnerDataVo> auditAppUserBindingOwners = null; |