tbcjdxuserinfo.java

来自「移动彩信管理平台」· Java 代码 · 共 128 行

JAVA
128
字号
package com.my7g.zj.mobile.mms.mapping;

import java.util.Date;

/**
 * TbCjdxUserInfo generated by MyEclipse Persistence Tools
 */

public class TbCjdxUserInfo implements java.io.Serializable {

	// Fields

	private Integer id;
	private Long phone;
	private Long typeId;
	private Short phoneBrandId;
	private Integer cityid;
	private Date registerDate;
	private Short state;
	private Integer payedDate;
	private String individuality;

	// Constructors

	/** default constructor */
	public TbCjdxUserInfo() {
	}

	/** minimal constructor */
	public TbCjdxUserInfo(Long phone, Long typeId, Short phoneBrandId,
			Integer cityid, Date registerDate, Short state) {
		this.phone = phone;
		this.typeId = typeId;
		this.phoneBrandId = phoneBrandId;
		this.cityid = cityid;
		this.registerDate = registerDate;
		this.state = state;
	}

	/** full constructor */
	public TbCjdxUserInfo(Long phone, Long typeId, Short phoneBrandId,
			Integer cityid, Date registerDate, Short state, Integer payedDate,
			String individuality) {
		this.phone = phone;
		this.typeId = typeId;
		this.phoneBrandId = phoneBrandId;
		this.cityid = cityid;
		this.registerDate = registerDate;
		this.state = state;
		this.payedDate = payedDate;
		this.individuality = individuality;
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public Long getPhone() {
		return this.phone;
	}

	public void setPhone(Long phone) {
		this.phone = phone;
	}

	public Long getTypeId() {
		return this.typeId;
	}

	public void setTypeId(Long typeId) {
		this.typeId = typeId;
	}

	public Short getPhoneBrandId() {
		return this.phoneBrandId;
	}

	public void setPhoneBrandId(Short phoneBrandId) {
		this.phoneBrandId = phoneBrandId;
	}

	public Integer getCityid() {
		return this.cityid;
	}

	public void setCityid(Integer cityid) {
		this.cityid = cityid;
	}

	public Date getRegisterDate() {
		return this.registerDate;
	}

	public void setRegisterDate(Date registerDate) {
		this.registerDate = registerDate;
	}

	public Short getState() {
		return this.state;
	}

	public void setState(Short state) {
		this.state = state;
	}

	public Integer getPayedDate() {
		return this.payedDate;
	}

	public void setPayedDate(Integer payedDate) {
		this.payedDate = payedDate;
	}

	public String getIndividuality() {
		return this.individuality;
	}

	public void setIndividuality(String individuality) {
		this.individuality = individuality;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?