ProjOvertimeStatsEntity.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package cn.com.lzt.overtimestats.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_proj_overtime_statistics", schema = "")
  30. @SuppressWarnings("serial")
  31. public class ProjOvertimeStatsEntity 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 pmId;
  40. @Excel(name="单位总人数",width=15)
  41. private Integer unitPeopleTotal;
  42. @Excel(name="加班时长",width=15)
  43. private BigDecimal overtimeDuration;
  44. @Excel(name="加班费用",width=15)
  45. private BigDecimal overtimeFee;
  46. /**
  47. *方法: 取得java.lang.String
  48. *@return: java.lang.String 主键
  49. */
  50. @Id
  51. @GeneratedValue(generator = "paymentableGenerator")
  52. @GenericGenerator(name = "paymentableGenerator", strategy = "uuid")
  53. @Column(name ="ID",nullable=false,length=36)
  54. public java.lang.String getId(){
  55. return this.id;
  56. }
  57. /**
  58. *方法: 设置java.lang.String
  59. *@param: java.lang.String 主键
  60. */
  61. public void setId(java.lang.String id){
  62. this.id = id;
  63. }
  64. @Column(name ="YEARMONTH",nullable=true,length=50)
  65. public java.lang.String getYearmonth() {
  66. return yearmonth;
  67. }
  68. public void setYearmonth(java.lang.String yearmonth) {
  69. this.yearmonth = yearmonth;
  70. }
  71. @Column(name ="PJT_ID",nullable=true,length=50)
  72. public java.lang.String getPjtId() {
  73. return pjtId;
  74. }
  75. public void setPjtId(java.lang.String pjtId) {
  76. this.pjtId = pjtId;
  77. }
  78. @Column(name ="PM_ID",nullable=true,length=50)
  79. public java.lang.String getPmId() {
  80. return pmId;
  81. }
  82. public void setPmId(java.lang.String pmId) {
  83. this.pmId = pmId;
  84. }
  85. @Column(name ="UNIT_PEOPLE_TOTAL",nullable=true,length=50)
  86. public Integer getUnitPeopleTotal() {
  87. return unitPeopleTotal;
  88. }
  89. public void setUnitPeopleTotal(Integer unitPeopleTotal) {
  90. this.unitPeopleTotal = unitPeopleTotal;
  91. }
  92. @Column(name ="OVERTIME_DURATION",nullable=true,length=50)
  93. public BigDecimal getOvertimeDuration() {
  94. return overtimeDuration;
  95. }
  96. public void setOvertimeDuration(BigDecimal overtimeDuration) {
  97. this.overtimeDuration = overtimeDuration;
  98. }
  99. @Column(name ="OVERTIME_FEE",nullable=true,length=50)
  100. public BigDecimal getOvertimeFee() {
  101. return overtimeFee;
  102. }
  103. public void setOvertimeFee(BigDecimal overtimeFee) {
  104. this.overtimeFee = overtimeFee;
  105. }
  106. }