package itn.com.cmm; import lombok.Getter; import lombok.Setter; import lombok.ToString; @Getter @Setter @ToString public class MjonFTSendVO{ /** * @description : 수신자번호 */ private String phone; /** * @description : [*이름*] - 치환문자 */ private String name; /** * @description : [*1*] - 치환문자 */ private String rep1; /** * @description : [*2*] - 치환문자 */ private String rep2; /** * @description : [*3*] - 치환문자 */ private String rep3; /** * @description : [*4*] - 치환문자 */ private String rep4; /** * @description : 문자ID */ private String msgId; /** * @description : 전송그룹ID (대량문자의 경우 하나의 그룹으로 세팅) */ private String msgGroupId; /** * @description : 문자온 일반회원ID */ private String userId; /** * @description : 발신번호 (하이픈 등의 문자를 제외한 12byte이하의 숫자로 입력한다.) */ private String callFrom; /** * @description : 수신번호 (하이픈 등의 문자를 제외한 12byte이하의 숫자로 입력한다.) */ private String callTo; /** * @description : 예약 발송일시 */ private String reqDate; /** * @description :전송사(04:다우, 05:JJ, 07:IVT, 01:아이하트 , 02:현대퓨처넷, 03:아이엠오) */ private String agentCode; /** * @description : MMS용 메시지제목 */ private String subject; /** * @description : SMS용 메시지본문 */ private String smsTxt; /** * @description : 메세지타입(4: SMS 전송, 5: URL 전송, 6: MMS전송, 7: BARCODE전송, 8: 카카오 알림톡 전송) */ private String msgType; /** * @description : 첨부파일 갯수 */ private String fileCnt; /** * @description : 파일이름1 */ private String filePath1; /** * @description : 파일이름2 */ private String filePath2; /** * @description : 파일이름3 */ private String filePath3; /** * @description : event 여부 / group tb에 넣는 용도 / 기본값 N */ private String eventYn="N"; /** * @description : 개별단가 */ private String eachPrice; }