| | |
| | | import com.java110.core.smo.org.IOrgStaffRelInnerServiceSMO; |
| | | import com.java110.core.smo.user.IUserInnerServiceSMO; |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.dto.UserDto; |
| | | import com.java110.dto.org.OrgStaffRelDto; |
| | | import com.java110.user.dao.IOrgStaffRelServiceDao; |
| | | import com.java110.utils.util.BeanConvertUtil; |
| | |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | return orgStaffRelServiceDaoImpl.queryOrgStaffRelsCount(BeanConvertUtil.beanCovertMap(orgStaffRelDto)); |
| | | } |
| | | |
| | | @Override |
| | | public List<OrgStaffRelDto> queryOrgInfoByStaffIds(@RequestBody OrgStaffRelDto orgStaffRelDto) { |
| | | List<OrgStaffRelDto> orgStaffRels = BeanConvertUtil.covertBeanList(orgStaffRelServiceDaoImpl.queryOrgInfoByStaffIds(BeanConvertUtil.beanCovertMap(orgStaffRelDto)), OrgStaffRelDto.class); |
| | | return orgStaffRels; |
| | | |
| | | } |
| | | |
| | | public IOrgStaffRelServiceDao getOrgStaffRelServiceDaoImpl() { |
| | | return orgStaffRelServiceDaoImpl; |
| | | } |