|
@@ -25,6 +25,10 @@ public class SttlMngInfoResponse {
|
25
|
25
|
private String storeId;
|
26
|
26
|
@ApiModelProperty(value = "매장명")
|
27
|
27
|
private String storeNm;
|
|
28
|
+ @ApiModelProperty(value = "공급사아이디")
|
|
29
|
+ private String spplyId;
|
|
30
|
+ @ApiModelProperty(value = "공급사명")
|
|
31
|
+ private String spplyNm;
|
28
|
32
|
@ApiModelProperty(value = "정산상태코드")
|
29
|
33
|
private String sttlStCd;
|
30
|
34
|
@ApiModelProperty(value = "정산상태명")
|
|
@@ -62,6 +66,8 @@ public class SttlMngInfoResponse {
|
62
|
66
|
.brandNm(entity.getBrandNm())
|
63
|
67
|
.storeId(entity.getStoreId())
|
64
|
68
|
.storeNm(entity.getStoreNm())
|
|
69
|
+ .spplyId(entity.getSpplyId())
|
|
70
|
+ .spplyNm(entity.getSpplyNm())
|
65
|
71
|
.sttlStCd(entity.getSttlStCd())
|
66
|
72
|
.sttlStNm(entity.getSttlStNm())
|
67
|
73
|
.sttlReqAmt(entity.getSttlReqAmt())
|