tbmmscpnotice.java

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

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

import java.util.Date;

/**
 * TbMmsCpNotice generated by MyEclipse Persistence Tools
 */

public class TbMmsCpNotice implements java.io.Serializable {

	// Fields

	private Integer noticeId;
	private String noticeTitle;
	private String noticeContent;
	private String noticeFile;
	private Integer noticeArea;
	private String noticeGroup;
	private String noticeCp;
	private Short noticeLevel;
	private Short isUse;
	private Integer createId;
	private Date createTime;

	// Constructors

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

	/** minimal constructor */
	public TbMmsCpNotice(String noticeTitle, String noticeContent,
			Integer noticeArea, String noticeGroup, Short noticeLevel,
			Short isUse, Integer createId, Date createTime) {
		this.noticeTitle = noticeTitle;
		this.noticeContent = noticeContent;
		this.noticeArea = noticeArea;
		this.noticeGroup = noticeGroup;
		this.noticeLevel = noticeLevel;
		this.isUse = isUse;
		this.createId = createId;
		this.createTime = createTime;
	}

	/** full constructor */
	public TbMmsCpNotice(String noticeTitle, String noticeContent,
			String noticeFile, Integer noticeArea, String noticeGroup,
			String noticeCp, Short noticeLevel, Short isUse, Integer createId,
			Date createTime) {
		this.noticeTitle = noticeTitle;
		this.noticeContent = noticeContent;
		this.noticeFile = noticeFile;
		this.noticeArea = noticeArea;
		this.noticeGroup = noticeGroup;
		this.noticeCp = noticeCp;
		this.noticeLevel = noticeLevel;
		this.isUse = isUse;
		this.createId = createId;
		this.createTime = createTime;
	}

	// Property accessors

	public Integer getNoticeId() {
		return this.noticeId;
	}

	public void setNoticeId(Integer noticeId) {
		this.noticeId = noticeId;
	}

	public String getNoticeTitle() {
		return this.noticeTitle;
	}

	public void setNoticeTitle(String noticeTitle) {
		this.noticeTitle = noticeTitle;
	}

	public String getNoticeContent() {
		return this.noticeContent;
	}

	public void setNoticeContent(String noticeContent) {
		this.noticeContent = noticeContent;
	}

	public String getNoticeFile() {
		return this.noticeFile;
	}

	public void setNoticeFile(String noticeFile) {
		this.noticeFile = noticeFile;
	}

	public Integer getNoticeArea() {
		return this.noticeArea;
	}

	public void setNoticeArea(Integer noticeArea) {
		this.noticeArea = noticeArea;
	}

	public String getNoticeGroup() {
		return this.noticeGroup;
	}

	public void setNoticeGroup(String noticeGroup) {
		this.noticeGroup = noticeGroup;
	}

	public String getNoticeCp() {
		return this.noticeCp;
	}

	public void setNoticeCp(String noticeCp) {
		this.noticeCp = noticeCp;
	}

	public Short getNoticeLevel() {
		return this.noticeLevel;
	}

	public void setNoticeLevel(Short noticeLevel) {
		this.noticeLevel = noticeLevel;
	}

	public Short getIsUse() {
		return this.isUse;
	}

	public void setIsUse(Short isUse) {
		this.isUse = isUse;
	}

	public Integer getCreateId() {
		return this.createId;
	}

	public void setCreateId(Integer createId) {
		this.createId = createId;
	}

	public Date getCreateTime() {
		return this.createTime;
	}

	public void setCreateTime(Date createTime) {
		this.createTime = createTime;
	}

}

⌨️ 快捷键说明

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