package cn.com.lzt.message.send.entity; import java.math.BigDecimal; import java.util.Date; import java.lang.String; import java.lang.Double; import java.lang.Integer; import java.math.BigDecimal; import javax.persistence.*; import javax.xml.soap.Text; import java.sql.Blob; import org.hibernate.annotations.GenericGenerator; import org.jeecgframework.poi.excel.annotation.Excel; /** * @Title: Entity * @Description: message_notice_id_increment * @author onlineGenerator * @date 2019-06-04 19:37:27 * @version V1.0 * */ @Entity @Table(name = "m_message_notice_id_increment", schema = "") @SuppressWarnings("serial") public class MMessageNoticeIdIncrementEntity implements java.io.Serializable { /**id*/ private Integer id; /**noticeType*/ @Excel(name="noticeType",width=15) private String noticeType; /**第几号文件*/ @Excel(name="第几号文件",width=15) private Integer typeNum; /**version*/ @Excel(name="version",width=15) private Integer version; /** *方法: 取得java.lang.Integer *@return: java.lang.Integer id */ @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name ="ID",nullable=false,length=10) public Integer getId(){ return this.id; } /** *方法: 设置java.lang.Integer *@param: java.lang.Integer id */ public void setId(Integer id){ this.id = id; } /** *方法: 取得java.lang.String *@return: java.lang.String noticeType */ @Column(name ="NOTICE_TYPE",nullable=true,length=45) public String getNoticeType(){ return this.noticeType; } /** *方法: 设置java.lang.String *@param: java.lang.String noticeType */ public void setNoticeType(String noticeType){ this.noticeType = noticeType; } /** *方法: 取得java.lang.Integer *@return: java.lang.Integer 第几号文件 */ @Column(name ="TYPE_NUM",nullable=true,length=10) public Integer getTypeNum(){ return this.typeNum; } /** *方法: 设置java.lang.Integer *@param: java.lang.Integer 第几号文件 */ public void setTypeNum(Integer typeNum){ this.typeNum = typeNum; } /** *方法: 取得java.lang.Integer *@return: java.lang.Integer version */ @Column(name ="VERSION",nullable=true,length=10) @Version public Integer getVersion(){ return this.version; } /** *方法: 设置java.lang.Integer *@param: java.lang.Integer version */ public void setVersion(Integer version){ this.version = version; } }