| | |
| | | import com.mindskip.xzs.base.RestResponse; |
| | | import com.mindskip.xzs.domain.DepartmentExamine; |
| | | import com.mindskip.xzs.domain.vo.DepartmentExamineVO; |
| | | import com.mindskip.xzs.service.IDepartmentExamineService; |
| | | import com.mindskip.xzs.service.DepartmentExamineService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.apache.commons.lang3.ObjectUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | @RequiredArgsConstructor |
| | | public class DepartmentExamineController extends BaseApiController { |
| | | |
| | | private final IDepartmentExamineService departmentExamineService; |
| | | private final DepartmentExamineService departmentExamineService; |
| | | |
| | | @RequestMapping(value = "list", method = RequestMethod.POST) |
| | | public RestResponse<PageInfo<DepartmentExamineVO>> list(@RequestBody DepartmentExamineVO departmentExamineVO) { |