부과예고 CU 구분 체크 및 소스 정리, 이행정보는 다른 탭에서 진행 될 예정
parent
a579f61626
commit
55c481fd92
@ -0,0 +1,80 @@
|
||||
package go.kr.project.crdn.crndRegistAndView.main.model;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import go.kr.project.common.model.PagingVO;
|
||||
import lombok.*;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@EqualsAndHashCode(callSuper=true)
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@ToString
|
||||
public class CrdnLevyInfoVO extends PagingVO {
|
||||
|
||||
private String levyInfoId;
|
||||
private String sggCd;
|
||||
private String crdnYr;
|
||||
private String crdnNo;
|
||||
private String impltInfoId;
|
||||
private String impltTaskSeCd;
|
||||
private String actInfoId;
|
||||
private String docNo;
|
||||
private BigDecimal impltCpsrAmt;
|
||||
private BigDecimal mprcStdAmt;
|
||||
private BigDecimal vltnArea;
|
||||
private String adtnRtCd;
|
||||
private BigDecimal adtnRt;
|
||||
private String sbtrRtCd;
|
||||
private BigDecimal sbtrRt;
|
||||
private BigDecimal adsbmtnEnfcRt;
|
||||
private String cmpttnRtCd;
|
||||
private BigDecimal cmpttnRt;
|
||||
private String cmpttnRt2Cd;
|
||||
private BigDecimal cmpttnRt2;
|
||||
private BigDecimal cmpttnAmt;
|
||||
private BigDecimal levyWholAmt;
|
||||
private BigDecimal bldgCrtrMprcAmt;
|
||||
private String strctIdxCd;
|
||||
private BigDecimal strctIdx;
|
||||
private String usgIdxCd;
|
||||
private BigDecimal usgIdx;
|
||||
private String pstnIdxCd;
|
||||
private BigDecimal pstnIdx;
|
||||
private BigDecimal elpsYrRdvlrt;
|
||||
private String bscsCstrnSeCd;
|
||||
private BigDecimal bscsCstrnRt;
|
||||
private BigDecimal bdstTxtnMprc;
|
||||
|
||||
/** 등록 일시 */
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Seoul")
|
||||
private LocalDateTime regDt;
|
||||
|
||||
/** 등록자 */
|
||||
private String rgtr;
|
||||
|
||||
/** 수정 일시 */
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Seoul")
|
||||
private LocalDateTime mdfcnDt;
|
||||
|
||||
/** 수정자 */
|
||||
private String mdfr;
|
||||
|
||||
/** 삭제 여부 */
|
||||
private String delYn;
|
||||
|
||||
/** 삭제 일시 */
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Seoul")
|
||||
private LocalDateTime delDt;
|
||||
|
||||
/** 삭제자 */
|
||||
private String dltr;
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue