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.

57 lines
689 B
Java

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 {
/**
* 안내문 ID
*/
private String gdccId;
/**
* 시군구 코드
*/
private String sggCd;
/**
* 업무 구분 코드
*/
private String taskSeCd;
/**
* 발송 구분 코드
*/
private String sndngSeCd;
/**
* 제목 명
*/
private String ttlNm;
/**
* 문구 내용
*/
private String wordsCn;
/**
* 최종 사용 일시
*/
private String lastUseDt;
/**
* 안내문 IDs
*/
private String[] gdccIDs;
}