feature/jp-0331 #526

Open
jungpyo2001 wants to merge 998 commits from feature/jp-0331 into main
2 changed files with 8 additions and 0 deletions
Showing only changes of commit a68a0210b8 - Show all commits

View File

@ -1,6 +1,7 @@
package com.interplug.qcast.biz.master.dto.pcs.connoption;
import com.interplug.qcast.biz.master.dto.pcs.ApiPcsConnResponse;
import com.interplug.qcast.biz.master.dto.pcs.ApiPcsOptionResponse;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.List;
import lombok.Getter;
@ -28,4 +29,7 @@ public class ApiPcsConnOptionPcsItemResponse {
@Schema(description = "연결함목록")
private List<ApiPcsConnResponse> connList;
@Schema(description = "옵션목록(모니터선택)")
private List<ApiPcsOptionResponse> optionList;
}

View File

@ -1,6 +1,7 @@
package com.interplug.qcast.biz.master.dto.pcs.voltagestepup;
import com.interplug.qcast.biz.master.dto.pcs.ApiPcsConnResponse;
import com.interplug.qcast.biz.master.dto.pcs.ApiPcsOptionResponse;
import com.interplug.qcast.biz.master.dto.pcs.ApiPcsSerQtyDto;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.List;
@ -32,4 +33,7 @@ public class ApiPcsVoltageStepUpPcsItemResponse {
@Schema(description = "연결함목록")
private List<ApiPcsConnResponse> connList;
@Schema(description = "옵션목록(모니터선택)")
private List<ApiPcsOptionResponse> optionList;
}