ProjDistributionStatsEntity.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package cn.com.lzt.distributionstats.entity;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. import java.util.List;
  5. import java.lang.String;
  6. import java.lang.Double;
  7. import java.lang.Integer;
  8. import java.math.BigDecimal;
  9. import javax.xml.soap.Text;
  10. import java.sql.Blob;
  11. import javax.persistence.Column;
  12. import javax.persistence.Entity;
  13. import javax.persistence.GeneratedValue;
  14. import javax.persistence.GenerationType;
  15. import javax.persistence.Id;
  16. import javax.persistence.Table;
  17. import org.hibernate.annotations.GenericGenerator;
  18. import javax.persistence.SequenceGenerator;
  19. import org.jeecgframework.poi.excel.annotation.Excel;
  20. /**
  21. * @Title: Entity
  22. * @Description: 公司岗位人力表
  23. * @author onlineGenerator
  24. * @date 2017-10-24 16:38:50
  25. * @version V1.0
  26. *
  27. */
  28. @Entity
  29. @Table(name = "t_bus_projpost_distribution_statistics", schema = "")
  30. @SuppressWarnings("serial")
  31. public class ProjDistributionStatsEntity implements java.io.Serializable {
  32. /**主键*/
  33. private java.lang.String id;
  34. @Excel(name="年月",width=15,format = "yyyy-MM-dd")
  35. private java.lang.String yearmonth;
  36. @Excel(name="项目id",width=15)
  37. private java.lang.String pjtId;
  38. @Excel(name="岗位ID",width=15)
  39. private java.lang.String postid;
  40. @Excel(name="人数",width=15)
  41. private Integer peopleNum;
  42. @Excel(name="占比",width=15)
  43. private BigDecimal proportion;
  44. /**
  45. *方法: 取得java.lang.String
  46. *@return: java.lang.String 主键
  47. */
  48. @Id
  49. @GeneratedValue(generator = "paymentableGenerator")
  50. @GenericGenerator(name = "paymentableGenerator", strategy = "uuid")
  51. @Column(name ="ID",nullable=false,length=36)
  52. public java.lang.String getId(){
  53. return this.id;
  54. }
  55. /**
  56. *方法: 设置java.lang.String
  57. *@param: java.lang.String 主键
  58. */
  59. public void setId(java.lang.String id){
  60. this.id = id;
  61. }
  62. @Column(name ="YEARMONTH",nullable=true,length=50)
  63. public java.lang.String getYearmonth() {
  64. return yearmonth;
  65. }
  66. public void setYearmonth(java.lang.String yearmonth) {
  67. this.yearmonth = yearmonth;
  68. }
  69. @Column(name ="POSTID",nullable=true,length=50)
  70. public java.lang.String getPostid() {
  71. return postid;
  72. }
  73. public void setPostid(java.lang.String postid) {
  74. this.postid = postid;
  75. }
  76. @Column(name ="PEOPLE_NUM",nullable=true,length=50)
  77. public Integer getPeopleNum() {
  78. return peopleNum;
  79. }
  80. public void setPeopleNum(Integer peopleNum) {
  81. this.peopleNum = peopleNum;
  82. }
  83. @Column(name ="PROPORTION",nullable=true,length=50)
  84. public BigDecimal getProportion() {
  85. return proportion;
  86. }
  87. public void setProportion(BigDecimal proportion) {
  88. this.proportion = proportion;
  89. }
  90. @Column(name ="PJT_ID",nullable=true,length=50)
  91. public java.lang.String getPjtId() {
  92. return pjtId;
  93. }
  94. public void setPjtId(java.lang.String pjtId) {
  95. this.pjtId = pjtId;
  96. }
  97. }