Back to project page msghandle.
The source code is released under:
GNU General Public License
If you think the Android project msghandle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.anlong.msghandle.vo; //w w w . j a v a 2 s .co m /** * @Title: DepInfo.java * @Package com.anlong.msghandle.vo * @company ShenZhen AnLong Technology CO.,LTD. * @author lixl * @date 2014-3-12 ????3:39:40 * @version V1.0 * @Description: ?????????,???????? */ public class DepInfo { /** ??ID */ private Integer depId; /** ?????? */ private String depName; /** ???? */ private Integer parentId; /** ????? */ private Integer smsBalance; /** ????? */ private Integer mmsBalance; /** 1 ?? 2 ?? 3?? */ private Byte operateType; private String[] fieldArr = {"depId","depName","parentId","smsBalance","mmsBalance","operateType"}; public Integer getDepId() { return depId; } public void setDepId(Integer depId) { this.depId = depId; } public String getDepName() { return depName; } public void setDepName(String depName) { this.depName = depName; } public Integer getParentId() { return parentId; } public void setParentId(Integer parentId) { this.parentId = parentId; } public Integer getSmsBalance() { return smsBalance; } public void setSmsBalance(Integer smsBalance) { this.smsBalance = smsBalance; } public Integer getMmsBalance() { return mmsBalance; } public void setMmsBalance(Integer mmsBalance) { this.mmsBalance = mmsBalance; } public Byte getOperateType() { return operateType; } public void setOperateType(Byte operateType) { this.operateType = operateType; } @Override public String toString() { return "DepInfo [depId=" + depId + ", depName=" + depName + ", parentId=" + parentId + ", smsBalance=" + smsBalance + ", mmsBalance=" + mmsBalance + ", operateType=" + operateType + "]"; } }