You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
633 B
Java
52 lines
633 B
Java
12 months ago
|
package cokr.xit.fims.epst;
|
||
|
|
||
|
import cokr.xit.foundation.AbstractEntity;
|
||
|
import lombok.Getter;
|
||
|
import lombok.Setter;
|
||
|
|
||
|
/**
|
||
|
* 전자우편 안내문
|
||
|
* @author JoJH
|
||
|
*/
|
||
|
@Getter
|
||
|
@Setter
|
||
|
public class EpostGdcc extends AbstractEntity {
|
||
|
|
||
|
/**
|
||
|
* 시군구 코드
|
||
|
*/
|
||
|
private String sggCd;
|
||
|
|
||
|
/**
|
||
|
* 업무 구분 코드
|
||
|
*/
|
||
|
private String taskSeCd;
|
||
|
|
||
|
/**
|
||
|
* 발송 구분 코드
|
||
|
*/
|
||
|
private String sndngSeCd;
|
||
|
|
||
|
/**
|
||
|
* 안내문 ID
|
||
|
*/
|
||
|
private String gdccId;
|
||
|
|
||
|
/**
|
||
|
* 제목 명
|
||
|
*/
|
||
|
private String ttlNm;
|
||
|
|
||
|
/**
|
||
|
* 문구 내용
|
||
|
*/
|
||
|
private String wordsCn;
|
||
|
|
||
|
/**
|
||
|
* 최종 사용 일시
|
||
|
*/
|
||
|
private String lastUseDt;
|
||
|
|
||
|
}
|
||
|
|