|
@ -189,10 +189,10 @@ public class YiFengScreenController { |
|
|
* @Date: 2024/3/21 16:02 |
|
|
* @Date: 2024/3/21 16:02 |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping("seedCompanyList") |
|
|
@GetMapping("seedCompanyList") |
|
|
public Result<PageData<IcSeedCompanyDTO>> seedCompanyList(){ |
|
|
public Result<List<IcSeedCompanyDTO>> seedCompanyList(){ |
|
|
Map<String, Object> params = new HashMap<>(); |
|
|
Map<String, Object> params = new HashMap<>(); |
|
|
PageData<IcSeedCompanyDTO> page = icSeedCompanyService.page(params); |
|
|
List<IcSeedCompanyDTO> page = icSeedCompanyService.list(params); |
|
|
return new Result<PageData<IcSeedCompanyDTO>>().ok(page); |
|
|
return new Result<List<IcSeedCompanyDTO>>().ok(page); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|