Browse Source

수납여부

marseyes 2 years ago
parent
commit
a8e0c07975

+ 3 - 0
src/main/java/com/oqpo/api/web/dto/response/loanmng/UnpaidMngInfoResponse.java

@@ -59,6 +59,8 @@ public class UnpaidMngInfoResponse {
59 59
 
60 60
     @ApiModelProperty(value = "사용가능한도")
61 61
     private Long useAmtTotal;
62
+    @ApiModelProperty(value = "수납여부(후불사용)")
63
+    private String rcptYn;
62 64
 
63 65
     public static UnpaidMngInfoResponse toDTO(StlMgntBaseInfoEntity entity) {
64 66
         if (entity == null) return null;
@@ -82,6 +84,7 @@ public class UnpaidMngInfoResponse {
82 84
                 .sysChgDttm(entity.getSysChgDttm())
83 85
                 .sysChgId(entity.getSysChgId())
84 86
                 .useAmtTotal(entity.getUseAmtTotal())
87
+                .rcptYn(entity.getRcptYn())
85 88
                 .build();
86 89
     }
87 90
 

+ 1 - 0
src/main/resources/mybatis/sqlmaps/loanmng/UnpaidMng.xml

@@ -128,6 +128,7 @@
128 128
             END AS sttl_st_nm,         /* 상태 */
129 129
             ]]>
130 130
             stl.sttl_mgnt_unq_no,      /* 정산관리고유번호 */
131
+            stl.rcpt_yn,               /* 수납여부(후불사용) */
131 132
             DATE_FORMAT(stl.sys_reg_dttm,'%Y.%m.%d %H:%i:%s') AS sys_reg_dttm,
132 133
             FN_USER_NM(stl.sys_reg_id) AS sys_reg_nm
133 134
         FROM store_base_info store