Browse Source

정산 요청

marseyes 2 years ago
parent
commit
49c33d9218

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

@@ -30,11 +30,11 @@ public class SttlMngInfoResponse {
30 30
     @ApiModelProperty(value = "정산상태명")
31 31
     private String sttlStNm;
32 32
     @ApiModelProperty(value = "정산요청금액")
33
-    private long sttlReqAmt;
33
+    private Long sttlReqAmt;
34 34
     @ApiModelProperty(value = "정산일자")
35 35
     private String sttlDt;
36 36
     @ApiModelProperty(value = "정산금액")
37
-    private long sttlAmt;
37
+    private Long sttlAmt;
38 38
     @ApiModelProperty(value = "정산등록담당자명")
39 39
     private String sttlRegMgrNm;
40 40
     @ApiModelProperty(value = "정산등록담당자아이디")
@@ -51,7 +51,7 @@ public class SttlMngInfoResponse {
51 51
     private String sysChgId;
52 52
 
53 53
     @ApiModelProperty(value = "계좌잔액")
54
-    private long acctBal;
54
+    private Long acctBal;
55 55
 
56 56
     public static SttlMngInfoResponse toDTO(StlMgntBaseInfoEntity entity) {
57 57
         if (entity == null) return null;