refactor(os-ems): 修改获取列表接口名称

- 将 /getList 接口重命名为 /getRecordIotenvInstantList
- 新接口名称更具描述性,能更清晰地表明其功能
boardTest
zch 2 months ago
parent 5e3dfbdee1
commit d885cd2eed

@ -107,8 +107,8 @@ public class RecordIotenvInstantController extends BaseController
}
@PreAuthorize("@ss.hasPermi('ems/record:recordIotenvInstant:list')")
@GetMapping("/getList")
public AjaxResult getList (RecordIotenvInstant recordIotenvInstant)throws ParseException
@GetMapping("/getRecordIotenvInstantList")
public AjaxResult getRecordIotenvInstantList (RecordIotenvInstant recordIotenvInstant)throws ParseException
{
List<RecordIotenvInstant> recordIotenvInstants = recordIotenvInstantService.selectRecordIotenvInstantList(recordIotenvInstant);
return success(recordIotenvInstants);

Loading…
Cancel
Save