package cn.com.lzt.distributionstats.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_projpost_distribution_statistics", schema = "") @SuppressWarnings("serial") public class ProjDistributionStatsEntity 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 postid; @Excel(name="人数",width=15) private Integer peopleNum; @Excel(name="占比",width=15) private BigDecimal proportion; /** *方法: 取得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 ="POSTID",nullable=true,length=50) public java.lang.String getPostid() { return postid; } public void setPostid(java.lang.String postid) { this.postid = postid; } @Column(name ="PEOPLE_NUM",nullable=true,length=50) public Integer getPeopleNum() { return peopleNum; } public void setPeopleNum(Integer peopleNum) { this.peopleNum = peopleNum; } @Column(name ="PROPORTION",nullable=true,length=50) public BigDecimal getProportion() { return proportion; } public void setProportion(BigDecimal proportion) { this.proportion = proportion; } @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; } }