feat: 주정차위반 심의대상 등록 진행
parent
f376877179
commit
7350e12dd0
@ -0,0 +1,78 @@
|
|||||||
|
package com.xit.biz.ctgy;
|
||||||
|
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
public class CtgyConstants {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 민원
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
@AllArgsConstructor
|
||||||
|
public enum Recall {
|
||||||
|
// 접수(전송) 상태
|
||||||
|
RC_IR_TRANSFER_NONE("1", "미접수(미전송)"),
|
||||||
|
RC_IR_TRANSFER_ACCEPT("2", "접수(전송)"),
|
||||||
|
// 민원구분
|
||||||
|
RC_GB_DECL("1", "의견진술"),
|
||||||
|
// 민원구분 : 이의신청
|
||||||
|
RC_GB_OBJECTION("2", "이의신청"),
|
||||||
|
// 심의결과(0:심의전, 1:미부과, 2:재판독, 3:심의제외-OCR수납등록에서 생성, 5:부과, 7:자진취하, 8:법원이송, 9:경찰이첩)
|
||||||
|
RC_STATE_INIT("0", "심의전"),
|
||||||
|
|
||||||
|
;
|
||||||
|
|
||||||
|
private final String code;
|
||||||
|
private final String desc;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 메인
|
||||||
|
*/
|
||||||
|
@Getter
|
||||||
|
@AllArgsConstructor
|
||||||
|
public enum Main {
|
||||||
|
// 과태료코드
|
||||||
|
MM_DBGB_PARK("11", "주정차위반과태료"),
|
||||||
|
MM_DBGD_BUS("12", "버스전용차로취만과태료"),
|
||||||
|
// 민원구분
|
||||||
|
RC_GB_DECL("1", "의견진술"),
|
||||||
|
RC_GB_OBJECTION("2", "이의신청"),
|
||||||
|
// 10:단속,11:부과,12:독촉,13:압류예정,21:압류,49:대납,51:자납,52:수시분수납,53:독촉분수납,54:압류예정분수납,55:압류해제수납,61:시효결손취소수납,62:불납결손취소수납,65:충당수납,71:서손,72:의견진술수용,73:이의신청수용,74:부과취소,75:자납고지부과등록,81:시효결손,82:불납결손,91:법원이송,92:경찰서이첩,98:면제차량,99:삭제자료)
|
||||||
|
MM_LSTATE_75("75", "자납고지부과등록"),
|
||||||
|
;
|
||||||
|
|
||||||
|
private final String code;
|
||||||
|
private final String desc;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@AllArgsConstructor
|
||||||
|
public enum UserInfo {
|
||||||
|
// 사용여부
|
||||||
|
ISENABLED_NONE("0", "미사용"),
|
||||||
|
ISENABLED_USE("1", "사용"),
|
||||||
|
// 사용자구분
|
||||||
|
ACCESSTYPE_ADMIN("001", "관리자"),
|
||||||
|
ACCESSTYPE_SIMSA("002", "심사자")
|
||||||
|
;
|
||||||
|
|
||||||
|
private final String code;
|
||||||
|
private final String desc;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@AllArgsConstructor
|
||||||
|
public enum SimsaUserInfo {
|
||||||
|
// 결과코드
|
||||||
|
MSU_RESULT_NONE("0", "미사용"),
|
||||||
|
|
||||||
|
;
|
||||||
|
|
||||||
|
private final String code;
|
||||||
|
private final String desc;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,8 +1,7 @@
|
|||||||
package com.xit.biz.ctgy.repository;
|
package com.xit.biz.ctgy.repository;
|
||||||
|
|
||||||
import com.xit.biz.ctgy.entity.MinInfoBoard680;
|
|
||||||
import com.xit.biz.ctgy.entity.Tf680Recall;
|
import com.xit.biz.ctgy.entity.Tf680Recall;
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
public interface ITf680RecallRepository extends JpaRepository<Tf680Recall, Long> {
|
public interface IRecallRepository extends JpaRepository<Tf680Recall, Long> {
|
||||||
}
|
}
|
@ -1,18 +1,14 @@
|
|||||||
package com.xit.biz.ctgy.repository;
|
package com.xit.biz.ctgy.repository;
|
||||||
|
|
||||||
import com.xit.biz.ctgy.dto.MinSimsaTargetDto;
|
|
||||||
import com.xit.biz.ctgy.entity.MinSimsa680;
|
import com.xit.biz.ctgy.entity.MinSimsa680;
|
||||||
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
import org.springframework.data.jpa.repository.Query;
|
import org.springframework.data.jpa.repository.Query;
|
||||||
import org.springframework.data.repository.query.Param;
|
import org.springframework.data.repository.query.Param;
|
||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import java.sql.Date;
|
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
public interface IParkingRepository extends JpaRepository<MinSimsa680, Long>, IParkingRepositoryCustom {
|
public interface ISimsaRepository extends JpaRepository<MinSimsa680, Long>, ISimsaRepositoryCustom {
|
||||||
|
|
||||||
@Query(value="insert into min_simsa680(" +
|
@Query(value="insert into min_simsa680(" +
|
||||||
"ms_maincode, " +
|
"ms_maincode, " +
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.xit.biz.ctgy.repository;
|
||||||
|
|
||||||
|
import com.xit.biz.ctgy.entity.MinSimsaUser680;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface ISimsaUserRepository extends JpaRepository<MinSimsaUser680, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue