人员类别控制层
This commit is contained in:
parent
58c6720f60
commit
c85d67f632
|
|
@ -39,10 +39,9 @@ public class CustPsnTypeController extends BaseController {
|
||||||
|
|
||||||
@GetMapping({"/queryPsnTypeByPage"})
|
@GetMapping({"/queryPsnTypeByPage"})
|
||||||
@ApiOperation("获取人员类别信息")
|
@ApiOperation("获取人员类别信息")
|
||||||
public TableDataInfo queryPsnTypeByPage(String content) {
|
public TableDataInfo queryPsnTypeByPage(@Valid QueryPsnTypeDTO dto) {
|
||||||
try {
|
try {
|
||||||
startPage();
|
startPage();
|
||||||
QueryPsnTypeDTO dto = (QueryPsnTypeDTO) QueryParseHelper.getParamFromContent(content, QueryPsnTypeDTO.class);
|
|
||||||
List<ExportPsnTypeVO> list = this.custPsnTypeService.queryPsnTypeByPage(dto);
|
List<ExportPsnTypeVO> list = this.custPsnTypeService.queryPsnTypeByPage(dto);
|
||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue