ComDistributionStatsEntity.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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_compost_distribution_statistics", schema = "")
  30. @SuppressWarnings("serial")
  31. public class ComDistributionStatsEntity 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 postid;
  38. @Excel(name="人数",width=15)
  39. private Integer peopleNum;
  40. @Excel(name="占比",width=15)
  41. private BigDecimal proportion;
  42. /**
  43. *方法: 取得java.lang.String
  44. *@return: java.lang.String 主键
  45. */
  46. @Id
  47. @GeneratedValue(generator = "paymentableGenerator")
  48. @GenericGenerator(name = "paymentableGenerator", strategy = "uuid")
  49. @Column(name ="ID",nullable=false,length=36)
  50. public java.lang.String getId(){
  51. return this.id;
  52. }
  53. /**
  54. *方法: 设置java.lang.String
  55. *@param: java.lang.String 主键
  56. */
  57. public void setId(java.lang.String id){
  58. this.id = id;
  59. }
  60. @Column(name ="YEARMONTH",nullable=true,length=50)
  61. public java.lang.String getYearmonth() {
  62. return yearmonth;
  63. }
  64. public void setYearmonth(java.lang.String yearmonth) {
  65. this.yearmonth = yearmonth;
  66. }
  67. @Column(name ="POSTID",nullable=true,length=50)
  68. public java.lang.String getPostid() {
  69. return postid;
  70. }
  71. public void setPostid(java.lang.String postid) {
  72. this.postid = postid;
  73. }
  74. @Column(name ="PEOPLE_NUM",nullable=true,length=50)
  75. public Integer getPeopleNum() {
  76. return peopleNum;
  77. }
  78. public void setPeopleNum(Integer peopleNum) {
  79. this.peopleNum = peopleNum;
  80. }
  81. @Column(name ="PROPORTION",nullable=true,length=50)
  82. public BigDecimal getProportion() {
  83. return proportion;
  84. }
  85. public void setProportion(BigDecimal proportion) {
  86. this.proportion = proportion;
  87. }
  88. }