|
@@ -77,6 +77,7 @@ public class RtnReqInfoResponse {
|
77
|
77
|
.rtnLocationNm(entity.getRtnLocationNm() == null ? "" : entity.getRtnLocationNm())
|
78
|
78
|
.rtnReqDtlList(dtlEntityList.stream()
|
79
|
79
|
.map(m -> RtnReqDtlInfo.builder()
|
|
80
|
+ .viewCd("R")
|
80
|
81
|
.rtnReqUnqNo(m.getRtnReqUnqNo() == null ? "" :m.getRtnReqUnqNo())
|
81
|
82
|
.rtnReqDtlNo(m.getRtnReqDtlNo() == null ? "" :m.getRtnReqDtlNo())
|
82
|
83
|
.itemId(m.getItemId() == null ? "" :m.getItemId())
|
|
@@ -106,6 +107,7 @@ public class RtnReqInfoResponse {
|
106
|
107
|
@AllArgsConstructor(access = AccessLevel.PROTECTED)
|
107
|
108
|
static class RtnReqDtlInfo {
|
108
|
109
|
|
|
110
|
+ @ApiModelProperty(value = "CRUD") private String viewCd;
|
109
|
111
|
@ApiModelProperty(value = "반품요청고유번호") private String rtnReqUnqNo;
|
110
|
112
|
@ApiModelProperty(value = "반품요청상세번호") private String rtnReqDtlNo;
|
111
|
113
|
@ApiModelProperty(value = "품목아이디") private String itemId;
|