MMessageNoticeIdIncrementEntity.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package cn.com.lzt.message.send.entity;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import java.lang.String;
  5. import java.lang.Double;
  6. import java.lang.Integer;
  7. import java.math.BigDecimal;
  8. import javax.persistence.*;
  9. import javax.xml.soap.Text;
  10. import java.sql.Blob;
  11. import org.hibernate.annotations.GenericGenerator;
  12. import org.jeecgframework.poi.excel.annotation.Excel;
  13. /**
  14. * @Title: Entity
  15. * @Description: message_notice_id_increment
  16. * @author onlineGenerator
  17. * @date 2019-06-04 19:37:27
  18. * @version V1.0
  19. *
  20. */
  21. @Entity
  22. @Table(name = "m_message_notice_id_increment", schema = "")
  23. @SuppressWarnings("serial")
  24. public class MMessageNoticeIdIncrementEntity implements java.io.Serializable {
  25. /**id*/
  26. private Integer id;
  27. /**noticeType*/
  28. @Excel(name="noticeType",width=15)
  29. private String noticeType;
  30. /**第几号文件*/
  31. @Excel(name="第几号文件",width=15)
  32. private Integer typeNum;
  33. /**version*/
  34. @Excel(name="version",width=15)
  35. private Integer version;
  36. /**
  37. *方法: 取得java.lang.Integer
  38. *@return: java.lang.Integer id
  39. */
  40. @Id
  41. @GeneratedValue(strategy = GenerationType.AUTO)
  42. @Column(name ="ID",nullable=false,length=10)
  43. public Integer getId(){
  44. return this.id;
  45. }
  46. /**
  47. *方法: 设置java.lang.Integer
  48. *@param: java.lang.Integer id
  49. */
  50. public void setId(Integer id){
  51. this.id = id;
  52. }
  53. /**
  54. *方法: 取得java.lang.String
  55. *@return: java.lang.String noticeType
  56. */
  57. @Column(name ="NOTICE_TYPE",nullable=true,length=45)
  58. public String getNoticeType(){
  59. return this.noticeType;
  60. }
  61. /**
  62. *方法: 设置java.lang.String
  63. *@param: java.lang.String noticeType
  64. */
  65. public void setNoticeType(String noticeType){
  66. this.noticeType = noticeType;
  67. }
  68. /**
  69. *方法: 取得java.lang.Integer
  70. *@return: java.lang.Integer 第几号文件
  71. */
  72. @Column(name ="TYPE_NUM",nullable=true,length=10)
  73. public Integer getTypeNum(){
  74. return this.typeNum;
  75. }
  76. /**
  77. *方法: 设置java.lang.Integer
  78. *@param: java.lang.Integer 第几号文件
  79. */
  80. public void setTypeNum(Integer typeNum){
  81. this.typeNum = typeNum;
  82. }
  83. /**
  84. *方法: 取得java.lang.Integer
  85. *@return: java.lang.Integer version
  86. */
  87. @Column(name ="VERSION",nullable=true,length=10)
  88. @Version
  89. public Integer getVersion(){
  90. return this.version;
  91. }
  92. /**
  93. *方法: 设置java.lang.Integer
  94. *@param: java.lang.Integer version
  95. */
  96. public void setVersion(Integer version){
  97. this.version = version;
  98. }
  99. }