package itn.let.mjo.event.service; public class MjonEventVO { private String eventInfoId; //이벤트 인덱스 private String uniqId; //회원 고유 아이디 private String mberId; //회원 아이디 private String mberNm; //회원 이름/기업명 private String eventNttId; //이벤트 게시글 아이디 private String eventBbsId; //이벤트 게시판 아이디 private String eventStartDate; //회원 이벤트 시작일자 private String eventEndDate; //회원 이벤트 종료일자 private double eventFrstCash; //이벤트 첫결제 Cash private double eventRemainCash; //이벤트 차감 후 남은 Cash private double eventRemainOriginCash; //이벤트 차감 후 남은 Cash(수정전) private String eventPgMoid; //이벤트 결제 아이디 private String eventShortPrice; //이벤트 단문 가격 private String eventLongPrice; //이벤트 장문 가격 private String eventPicturePrice; //이벤트 그림 1장 가격 private String eventPicture2Price; //이벤트 그림 2장 가격 private String eventPicture3Price; //이벤트 그림 3장 가격 private String eventPolicyYn; //이벤트 유의사항 동의 여부 private String eventSmsYn; //이벤트 문사수신 동의 여부 private String eventStatus; //이벤트 유효 상태값(진행중 : Y, 미진행 : N, 종료 : E) private String eventMemo; //이벤트 메모 private String frstRegistPnttm; //최초 등록일자 private String lastUpdtPnttm; //수정일자 private String payCount; //결제 총 갯수 private String point; //사용자 포인트 정보 private String userId; //사용자 아이디 private String frstRegisterId; //등록자 아이디 public double getEventRemainOriginCash() { return eventRemainOriginCash; } public void setEventRemainOriginCash(double eventRemainOriginCash) { this.eventRemainOriginCash = eventRemainOriginCash; } public String getEventInfoId() { return eventInfoId; } public void setEventInfoId(String eventInfoId) { this.eventInfoId = eventInfoId; } public String getUniqId() { return uniqId; } public void setUniqId(String uniqId) { this.uniqId = uniqId; } public String getMberId() { return mberId; } public void setMberId(String mberId) { this.mberId = mberId; } public String getMberNm() { return mberNm; } public void setMberNm(String mberNm) { this.mberNm = mberNm; } public String getEventNttId() { return eventNttId; } public void setEventNttId(String eventNttId) { this.eventNttId = eventNttId; } public String getEventBbsId() { return eventBbsId; } public void setEventBbsId(String eventBbsId) { this.eventBbsId = eventBbsId; } public String getEventStartDate() { return eventStartDate; } public void setEventStartDate(String eventStartDate) { this.eventStartDate = eventStartDate; } public String getEventEndDate() { return eventEndDate; } public void setEventEndDate(String eventEndDate) { this.eventEndDate = eventEndDate; } public double getEventFrstCash() { return eventFrstCash; } public void setEventFrstCash(double eventFrstCash) { this.eventFrstCash = eventFrstCash; } public double getEventRemainCash() { return eventRemainCash; } public void setEventRemainCash(double eventRemainCash) { this.eventRemainCash = eventRemainCash; } public String getEventPgMoid() { return eventPgMoid; } public void setEventPgMoid(String eventPgMoid) { this.eventPgMoid = eventPgMoid; } public String getEventShortPrice() { return eventShortPrice; } public void setEventShortPrice(String eventShortPrice) { this.eventShortPrice = eventShortPrice; } public String getEventLongPrice() { return eventLongPrice; } public void setEventLongPrice(String eventLongPrice) { this.eventLongPrice = eventLongPrice; } public String getEventPicturePrice() { return eventPicturePrice; } public void setEventPicturePrice(String eventPicturePrice) { this.eventPicturePrice = eventPicturePrice; } public String getEventPicture2Price() { return eventPicture2Price; } public void setEventPicture2Price(String eventPicture2Price) { this.eventPicture2Price = eventPicture2Price; } public String getEventPicture3Price() { return eventPicture3Price; } public void setEventPicture3Price(String eventPicture3Price) { this.eventPicture3Price = eventPicture3Price; } public String getEventPolicyYn() { return eventPolicyYn; } public void setEventPolicyYn(String eventPolicyYn) { this.eventPolicyYn = eventPolicyYn; } public String getEventSmsYn() { return eventSmsYn; } public void setEventSmsYn(String eventSmsYn) { this.eventSmsYn = eventSmsYn; } public String getEventStatus() { return eventStatus; } public void setEventStatus(String eventStatus) { this.eventStatus = eventStatus; } public String getEventMemo() { return eventMemo; } public void setEventMemo(String eventMemo) { this.eventMemo = eventMemo; } public String getFrstRegistPnttm() { return frstRegistPnttm; } public void setFrstRegistPnttm(String frstRegistPnttm) { this.frstRegistPnttm = frstRegistPnttm; } public String getLastUpdtPnttm() { return lastUpdtPnttm; } public void setLastUpdtPnttm(String lastUpdtPnttm) { this.lastUpdtPnttm = lastUpdtPnttm; } public String getPayCount() { return payCount; } public void setPayCount(String payCount) { this.payCount = payCount; } public String getPoint() { return point; } public void setPoint(String point) { this.point = point; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getFrstRegisterId() { return frstRegisterId; } public void setFrstRegisterId(String frstRegisterId) { this.frstRegisterId = frstRegisterId; } }