| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- package cn.com.lzt.overtimestats.entity;
- import java.math.BigDecimal;
- import java.util.Date;
- import java.util.List;
- import java.lang.String;
- import java.lang.Double;
- import java.lang.Integer;
- import java.math.BigDecimal;
- import javax.xml.soap.Text;
- import java.sql.Blob;
- import javax.persistence.Column;
- import javax.persistence.Entity;
- import javax.persistence.GeneratedValue;
- import javax.persistence.GenerationType;
- import javax.persistence.Id;
- import javax.persistence.Table;
- import org.hibernate.annotations.GenericGenerator;
- import javax.persistence.SequenceGenerator;
- import org.jeecgframework.poi.excel.annotation.Excel;
- /**
- * @Title: Entity
- * @Description: 项目加班统计表
- * @author onlineGenerator
- * @date 2017-10-24 16:38:50
- * @version V1.0
- *
- */
- @Entity
- @Table(name = "t_bus_proj_overtime_statistics", schema = "")
- @SuppressWarnings("serial")
- public class ProjOvertimeStatsEntity implements java.io.Serializable {
- /**主键*/
- private java.lang.String id;
- @Excel(name="年月",width=15,format = "yyyy-MM-dd")
- private java.lang.String yearmonth;
- @Excel(name="项目id",width=15)
- private java.lang.String pjtId;
- @Excel(name="项目经理id",width=15)
- private java.lang.String pmId;
- @Excel(name="单位总人数",width=15)
- private Integer unitPeopleTotal;
- @Excel(name="加班时长",width=15)
- private BigDecimal overtimeDuration;
- @Excel(name="加班费用",width=15)
- private BigDecimal overtimeFee;
-
-
- /**
- *方法: 取得java.lang.String
- *@return: java.lang.String 主键
- */
- @Id
- @GeneratedValue(generator = "paymentableGenerator")
- @GenericGenerator(name = "paymentableGenerator", strategy = "uuid")
- @Column(name ="ID",nullable=false,length=36)
- public java.lang.String getId(){
- return this.id;
- }
- /**
- *方法: 设置java.lang.String
- *@param: java.lang.String 主键
- */
- public void setId(java.lang.String id){
- this.id = id;
- }
- @Column(name ="YEARMONTH",nullable=true,length=50)
- public java.lang.String getYearmonth() {
- return yearmonth;
- }
- public void setYearmonth(java.lang.String yearmonth) {
- this.yearmonth = yearmonth;
- }
- @Column(name ="PJT_ID",nullable=true,length=50)
- public java.lang.String getPjtId() {
- return pjtId;
- }
- public void setPjtId(java.lang.String pjtId) {
- this.pjtId = pjtId;
- }
- @Column(name ="PM_ID",nullable=true,length=50)
- public java.lang.String getPmId() {
- return pmId;
- }
- public void setPmId(java.lang.String pmId) {
- this.pmId = pmId;
- }
- @Column(name ="UNIT_PEOPLE_TOTAL",nullable=true,length=50)
- public Integer getUnitPeopleTotal() {
- return unitPeopleTotal;
- }
- public void setUnitPeopleTotal(Integer unitPeopleTotal) {
- this.unitPeopleTotal = unitPeopleTotal;
- }
-
-
- @Column(name ="OVERTIME_DURATION",nullable=true,length=50)
- public BigDecimal getOvertimeDuration() {
- return overtimeDuration;
- }
-
-
- public void setOvertimeDuration(BigDecimal overtimeDuration) {
- this.overtimeDuration = overtimeDuration;
- }
- @Column(name ="OVERTIME_FEE",nullable=true,length=50)
- public BigDecimal getOvertimeFee() {
- return overtimeFee;
- }
- public void setOvertimeFee(BigDecimal overtimeFee) {
- this.overtimeFee = overtimeFee;
- }
-
-
-
-
- }
|