feat: entity scope 조정 에러 fix
parent
dc6402cadd
commit
29fa93e2fe
@ -1,12 +1,12 @@
|
||||
package com.xit.biz.ctgy.dto.struct;
|
||||
|
||||
import com.xit.biz.ctgy.dto.MinSimsa680GroupDto;
|
||||
import com.xit.biz.ctgy.dto.SimsaListDto;
|
||||
import com.xit.biz.ctgy.entity.MinSimsa680;
|
||||
import com.xit.core.support.jpa.mapstruct.IMapstruct;
|
||||
import com.xit.core.support.jpa.mapstruct.MapStructMapperConfig;
|
||||
import org.mapstruct.Mapper;
|
||||
|
||||
@Mapper(config = MapStructMapperConfig.class)
|
||||
public interface MinSimsa680GroupMapstruct extends IMapstruct<MinSimsa680GroupDto, MinSimsa680> {
|
||||
public interface MinSimsa680GroupMapstruct extends IMapstruct<SimsaListDto, MinSimsa680> {
|
||||
|
||||
}
|
||||
|
@ -0,0 +1,86 @@
|
||||
package com.xit.biz.ctgy.entity;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
|
||||
@Schema(name = "MinSimsa680Sc", description = "민원심사")
|
||||
@Table(name = "min_simsa680_sc", schema = "", catalog = "")
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor(access = AccessLevel.PROTECTED)
|
||||
@Getter
|
||||
@Builder
|
||||
public class MinSimsa680Sc { //implements Serializable {
|
||||
//private static final long SerialVersionUID = 1L;
|
||||
|
||||
@Schema(required = true, title = "민원코드", example = " ", description = "Input Description...")
|
||||
@Id
|
||||
@Column(name = "ms_maincode")
|
||||
private Long msMaincode;
|
||||
|
||||
|
||||
@Schema(required = true, title = "접수번호", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_seq", nullable = false)
|
||||
private String msSeq;
|
||||
|
||||
@Schema(required = true, title = "차량번호", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_carnum", nullable = false)
|
||||
private String msCarnum;
|
||||
|
||||
@Schema(required = true, title = "년도", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_year", nullable = false)
|
||||
private String msYear;
|
||||
|
||||
@Schema(required = true, title = "차수", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_chasu", nullable = false)
|
||||
private Long msChasu;
|
||||
|
||||
@Schema(required = true, title = "심사시작일시", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_sdate", nullable = false)
|
||||
private java.sql.Date msSdate;
|
||||
|
||||
@Schema(required = true, title = "심사시작시간", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_startsi", nullable = false)
|
||||
private String msStartsi;
|
||||
|
||||
@Schema(required = true, title = "심사종료일시", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_edate", nullable = false)
|
||||
private java.sql.Date msEdate;
|
||||
|
||||
@Schema(required = true, title = "심사마감일시", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_cdate", nullable = false)
|
||||
private java.sql.Date msCdate;
|
||||
|
||||
@Schema(required = true, title = "심사마감시간", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_closesi", nullable = false)
|
||||
private String msClosesi;
|
||||
|
||||
@Schema(required = false, title = "단속일자", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_wdate", nullable = true)
|
||||
private java.sql.Date msWdate;
|
||||
|
||||
@Schema(required = false, title = "단속장소", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_pos", nullable = true)
|
||||
private String msPos;
|
||||
|
||||
@Schema(required = false, title = "결과코드", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_result", nullable = true)
|
||||
private String msResult;
|
||||
|
||||
@Schema(required = false, title = "단속시간", example = " ", description = "Input Description...")
|
||||
@Column(name = "ms_jbtime", nullable = true)
|
||||
private String msJbtime;
|
||||
|
||||
@Schema(required = false, title = "데이타구분", example = "1", description = "데이타구분: 1-거주자, 2-장애인")
|
||||
@Column(name = "ms_datagb", nullable = false)
|
||||
private String msDatagb;
|
||||
}
|
Loading…
Reference in New Issue