| | |
| | | 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.RoomDto; |
| | | import com.java110.dto.basePrivilege.BasePrivilegeDto; |
| | |
| | | import java.util.Map; |
| | | |
| | | @Java110Cmd(serviceCode = "owner.queryOwners") |
| | | public class QueryOwnersCmd extends AbstractServiceCmdListener { |
| | | public class QueryOwnersCmd extends Cmd { |
| | | |
| | | @Autowired |
| | | private IOwnerInnerServiceSMO ownerInnerServiceSMOImpl; |
| | |
| | | //获取当前用户id |
| | | String ownerTypeCd = reqJson.getString("ownerTypeCd"); |
| | | OwnerDto tmpOwnerDto = BeanConvertUtil.covertBean(reqJson, OwnerDto.class); |
| | | if(!StringUtil.isEmpty(ownerTypeCd)&& ownerTypeCd.contains(",")){ |
| | | if(!StringUtil.isEmpty(ownerTypeCd) && ownerTypeCd.contains(",")){ |
| | | tmpOwnerDto.setOwnerTypeCd(""); |
| | | tmpOwnerDto.setOwnerTypeCds(ownerTypeCd.split(",")); |
| | | } |