package com.gkhy.labRiskManage.domain.basic.entity; import javax.persistence.*; import java.io.Serializable; import java.math.BigDecimal; /** * 评价因子MES-S */ @Entity @Table(name = "factor_mes_s") public class FactorMesS implements Serializable { private static final long serialVersionUID = 429540548969553519L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; /** * 分值 */ private BigDecimal value; /** * MES-S-法律法规及其他要求 */ private String desc; /** * MES-S-人员伤亡 */ private String person; /** * MES-S-直接经济损失(万元) */ private String money; /** * MES-S-停工 */ private String stopWork; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public BigDecimal getValue() { return value; } public void setValue(BigDecimal value) { this.value = value; } public String getDesc() { return desc; } public void setDesc(String desc) { this.desc = desc; } public String getPerson() { return person; } public void setPerson(String person) { this.person = person; } public String getMoney() { return money; } public void setMoney(String money) { this.money = money; } public String getStopWork() { return stopWork; } public void setStopWork(String stopWork) { this.stopWork = stopWork; } }