|
@@ -36,7 +36,7 @@ public class ProBasicPowerstationController {
|
|
|
*
|
|
|
* @param id
|
|
|
* @param name
|
|
|
- * @param code
|
|
|
+ * @param nemCode
|
|
|
* @param companyId
|
|
|
* @param pageNum
|
|
|
* @param pageSize
|
|
@@ -46,13 +46,13 @@ public class ProBasicPowerstationController {
|
|
|
@ApiOperation(value = "场站-列表", notes = "场站-列表")
|
|
|
public R findList(@RequestParam(value = "id", required = false) String id,
|
|
|
@RequestParam(value = "name", required = false) String name,
|
|
|
- @RequestParam(value = "code", required = false) String code,
|
|
|
+ @RequestParam(value = "nemCode", required = false) String nemCode,
|
|
|
@RequestParam(value = "companyId", required = false) String companyId,
|
|
|
@RequestParam(value = "groupId", required = false) String groupId,
|
|
|
@RequestParam(value = "regionId", required = false) String regionId,
|
|
|
@RequestParam(value = "pageNum", required = true) String pageNum,
|
|
|
@RequestParam(value = "pageSize", required = true) String pageSize) {
|
|
|
- IPage<ProBasicPowerstation> list = proBasicWindpowerstationService.getList(id, name, code, groupId,companyId,regionId, pageNum, pageSize);
|
|
|
+ IPage<ProBasicPowerstation> list = proBasicWindpowerstationService.getList(id, name, nemCode, groupId,companyId,regionId, pageNum, pageSize);
|
|
|
if (null != list) {
|
|
|
return R.ok().data(list);
|
|
|
} else {
|