|
@@ -29,6 +29,13 @@ public class VmsCommonController {
|
|
|
private final TbVmsMsgDsplDrctService msgDsplDrctService;
|
|
|
private final TbVmsFontShpeService fontShpeService;
|
|
|
private final TbVmsFormObjectTypeService objectTypeService;
|
|
|
+ private final TbVmsFontColrService fontColrService;
|
|
|
+
|
|
|
+ @ApiOperation(value = "VMS 목록 조회(TB_VMS_CTLR)", response = TbVmsIfscRltnDto.class, responseContainer = "ArrayList")
|
|
|
+ @GetMapping(value = "/vms-list", produces = {"application/json; charset=utf8"})
|
|
|
+ public List<TbVmsCtlrDto> findVmsCtlrAll() {
|
|
|
+ return this.vmsCtlrService.findNotDeletedAll();
|
|
|
+ }
|
|
|
|
|
|
@ApiOperation(value = "VMS 제어기 용도 유형 조회(TB_VMS_USAG_TYPE)", response = TbVmsUsagTypeDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/vms-usage", produces = {"application/json; charset=utf8"})
|
|
@@ -42,12 +49,6 @@ public class VmsCommonController {
|
|
|
return this.vmsTypeService.findAll();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "VMS 목록 조회(TB_VMS_CTLR)", response = TbVmsIfscRltnDto.class, responseContainer = "ArrayList")
|
|
|
- @GetMapping(value = "/vms-list", produces = {"application/json; charset=utf8"})
|
|
|
- public List<TbVmsCtlrDto> findVmsCtlrAll() {
|
|
|
- return this.vmsCtlrService.findNotDeletedAll();
|
|
|
- }
|
|
|
-
|
|
|
@ApiOperation(value = "VMS 폼 유형 조회(TB_VMS_FORM_TYPE)", response = TbVmsFormTypeDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/vms-form-type", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsFormTypeDto> findVmsFormTypeAll() {
|
|
@@ -72,6 +73,12 @@ public class VmsCommonController {
|
|
|
return this.fontShpeService.findAll();
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "VMS 폼 폰트색상 조회(TB_VMS_FONT_COLR)", response = TbVmsFontColrDto.class, responseContainer = "ArrayList")
|
|
|
+ @GetMapping(value = "/vms-form-font-colr", produces = {"application/json; charset=utf8"})
|
|
|
+ public List<TbVmsFontColrDto> findVmsFormFontColrAll() {
|
|
|
+ return this.fontColrService.findAll();
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "VMS 폼 객체유형 조회-전체(TB_VMS_FORM_OBJECT_TYPE)", response = TbVmsFormObjectTypeDto.class, responseContainer = "ArrayList")
|
|
|
@GetMapping(value = "/vms-form-object", produces = {"application/json; charset=utf8"})
|
|
|
public List<TbVmsFormObjectTypeDto> findVmsFormObjectTypeAll() {
|