Browse Source

정산 반려 사유

marseyes 2 years ago
parent
commit
2355a6420c

+ 2 - 0
src/main/java/com/oqpo/api/entity/settmng/StlMgntBaseInfoEntity.java

@@ -38,6 +38,8 @@ public class StlMgntBaseInfoEntity implements Serializable {
38 38
     private String sttlDt;
39 39
     @ApiModelProperty(value = "정산금액")
40 40
     private Long sttlAmt;
41
+    @ApiModelProperty(value = "정산반려사유")
42
+    private String sttlRjctRsn;
41 43
     @ApiModelProperty(value = "정산등록담당자명")
42 44
     private String sttlRegMgrNm;
43 45
     @ApiModelProperty(value = "정산등록담당자아이디")

+ 3 - 0
src/main/java/com/oqpo/api/web/dto/response/sttlmng/SttlMngInfoResponse.java

@@ -53,6 +53,8 @@ public class SttlMngInfoResponse {
53 53
     private String sysChgDttm;
54 54
     @ApiModelProperty(value = "시스템변경아이디")
55 55
     private String sysChgId;
56
+    @ApiModelProperty(value = "정산반려사유")
57
+    private String sttlRjctRsn;
56 58
 
57 59
     @ApiModelProperty(value = "계좌잔액")
58 60
     private Long acctBal;
@@ -70,6 +72,7 @@ public class SttlMngInfoResponse {
70 72
                 .spplyNm(entity.getSpplyNm())
71 73
                 .sttlStCd(entity.getSttlStCd())
72 74
                 .sttlStNm(entity.getSttlStNm())
75
+                .sttlRjctRsn(entity.getSttlRjctRsn())
73 76
                 .sttlReqAmt(entity.getSttlReqAmt())
74 77
                 .sttlDt(entity.getSttlDt())
75 78
                 .sttlAmt(entity.getSttlAmt())