| | |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.BeanUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import oshi.driver.unix.aix.Ls; |
| | | |
| | |
| | | /** |
| | | * 查询基础设置列表 |
| | | */ |
| | | // @ApiOperation( value = "查询基础设置列表") |
| | | // @PostMapping(value = "/list") |
| | | // public AjaxResult<PageInfo<TFoundationPersonVO>> list(@RequestBody TFoundationPersonQuery query) { |
| | | // return AjaxResult.success(foundationPersonService.getList(query)); |
| | | // } |
| | | |
| | | @ApiOperation( value = "查询基础设置列表") |
| | | @PostMapping(value = "/list") |
| | | public AjaxResult<PageInfo<TFoundationPersonVO>> list(@RequestBody TFoundationPersonQuery query) { |
| | | return AjaxResult.success(foundationPersonService.getList(query)); |
| | | public AjaxResult<List<TFoundationPersonVO>> list(@RequestBody TFoundationPersonQuery query) { |
| | | return AjaxResult.success(foundationPersonService.getSetList(query)); |
| | | } |
| | | |
| | | /** |