tbcjdxuserhistory.java

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

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

import java.util.Date;

/**
 * TbCjdxUserHistory generated by MyEclipse Persistence Tools
 */

public class TbCjdxUserHistory implements java.io.Serializable {

	// Fields

	private Long id;
	private Short typeId;
	private Long phone;
	private Integer cityId;
	private Date openDate;
	private Date destoryDate;
	private Short userState;
	private Short openSource;
	private Short destorySource;

	// Constructors

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

	/** minimal constructor */
	public TbCjdxUserHistory(Short typeId, Long phone, Date openDate,
			Short userState, Short openSource, Short destorySource) {
		this.typeId = typeId;
		this.phone = phone;
		this.openDate = openDate;
		this.userState = userState;
		this.openSource = openSource;
		this.destorySource = destorySource;
	}

	/** full constructor */
	public TbCjdxUserHistory(Short typeId, Long phone, Integer cityId,
			Date openDate, Date destoryDate, Short userState, Short openSource,
			Short destorySource) {
		this.typeId = typeId;
		this.phone = phone;
		this.cityId = cityId;
		this.openDate = openDate;
		this.destoryDate = destoryDate;
		this.userState = userState;
		this.openSource = openSource;
		this.destorySource = destorySource;
	}

	// Property accessors

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

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

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

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

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

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

	public Integer getCityId() {
		return this.cityId;
	}

	public void setCityId(Integer cityId) {
		this.cityId = cityId;
	}

	public Date getOpenDate() {
		return this.openDate;
	}

	public void setOpenDate(Date openDate) {
		this.openDate = openDate;
	}

	public Date getDestoryDate() {
		return this.destoryDate;
	}

	public void setDestoryDate(Date destoryDate) {
		this.destoryDate = destoryDate;
	}

	public Short getUserState() {
		return this.userState;
	}

	public void setUserState(Short userState) {
		this.userState = userState;
	}

	public Short getOpenSource() {
		return this.openSource;
	}

	public void setOpenSource(Short openSource) {
		this.openSource = openSource;
	}

	public Short getDestorySource() {
		return this.destorySource;
	}

	public void setDestorySource(Short destorySource) {
		this.destorySource = destorySource;
	}

}

⌨️ 快捷键说明

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