package com.topsun.posclient.datamodel; import java.math.BigDecimal; import java.util.Date; /** * VIP会员 * @author Dong * */ public class VipUser { /** * ID编号 */ private int ID = 0; /** * 姓名 */ private String MenberName = null; /** * 性别 */ private int Sex = 0; /** * 年龄 */ private int Age = 0; /** * 生日 */ private Date BirthDay = null; /** * 身份证 */ private String IDCard = null; /** * 会员卡编号 */ private String CardNo = null; /** * 会员卡类型 */ private String CardType = null; private String CardTypeNM = null; /** * 开卡时间 */ private String IssueDate = null; /** * 积分 */ private BigDecimal Point = null; /** * 会员状态 */ private String Status = null; /** * 有效期开始 */ private String EffectiveDateS = null; /** * 有效期结束 */ private String EffectiveDateE = null; /** * 手机号码 */ private String telephoneNo = null; /** * 密码 */ private String password = null; /** * @return */ public String getCardTypeNM() { return CardTypeNM; } /** * @param cardTypeNM */ public void setCardTypeNM(String cardTypeNM) { CardTypeNM = cardTypeNM; } /** * @return the telephoneNo */ public String getTelephoneNo() { return telephoneNo; } /** * @param telephoneNo the telephoneNo to set */ public void setTelephoneNo(String telephoneNo) { this.telephoneNo = telephoneNo; } /** * @return the password */ public String getPassword() { return password; } /** * @param password the password to set */ public void setPassword(String password) { this.password = password; } /** * @return the iD */ public final int getID() { return ID; } /** * @param iD the iD to set */ public final void setID(int iD) { ID = iD; } /** * @return the menberName */ public final String getMenberName() { return MenberName; } /** * @param menberName the menberName to set */ public final void setMenberName(String menberName) { MenberName = menberName; } /** * @return the sex */ public final int getSex() { return Sex; } /** * @param sex the sex to set */ public final void setSex(int sex) { Sex = sex; } /** * @return the age */ public final int getAge() { return Age; } /** * @param age the age to set */ public final void setAge(int age) { Age = age; } /** * @return the birthDay */ public final Date getBirthDay() { return BirthDay; } /** * @param birthDay the birthDay to set */ public final void setBirthDay(Date birthDay) { BirthDay = birthDay; } /** * @return the iDCard */ public final String getIDCard() { return IDCard; } /** * @param iDCard the iDCard to set */ public final void setIDCard(String iDCard) { IDCard = iDCard; } /** * @return the cardNo */ public final String getCardNo() { return CardNo; } /** * @param cardNo the cardNo to set */ public final void setCardNo(String cardNo) { CardNo = cardNo; } /** * @return the cardType */ public final String getCardType() { return CardType; } /** * @param cardType the cardType to set */ public final void setCardType(String cardType) { CardType = cardType; } /** * @return the issueDate */ public final String getIssueDate() { return IssueDate; } /** * @param issueDate the issueDate to set */ public final void setIssueDate(String issueDate) { IssueDate = issueDate; } /** * @return the point */ public final BigDecimal getPoint() { return Point; } /** * @param point the point to set */ public final void setPoint(BigDecimal point) { Point = point; } /** * @return the status */ public final String getStatus() { return Status; } /** * @param status the status to set */ public final void setStatus(String status) { Status = status; } /** * @return the effectiveDateS */ public final String getEffectiveDateS() { return EffectiveDateS; } /** * @param effectiveDateS the effectiveDateS to set */ public final void setEffectiveDateS(String effectiveDateS) { EffectiveDateS = effectiveDateS; } /** * @return the effectiveDateE */ public final String getEffectiveDateE() { return EffectiveDateE; } /** * @param effectiveDateE the effectiveDateE to set */ public final void setEffectiveDateE(String effectiveDateE) { EffectiveDateE = effectiveDateE; } }