package com.gkhy.labRiskManage.domain.basic.entity;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* 评价因子LEC-C
|
*/
|
@Entity
|
@Table(name = "factor_lec_c")
|
public class FactorLecC implements Serializable {
|
private static final long serialVersionUID = -55333598853895257L;
|
|
@Id
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
private Long id;
|
/**
|
* 分值
|
*/
|
private BigDecimal value;
|
/**
|
* LS-S-法律,法规及其它要求
|
*/
|
private String desc;
|
/**
|
* LS-S-人员伤亡
|
*/
|
private String person;
|
/**
|
* LS-S-直接经济损失
|
*/
|
private String money;
|
/**
|
* LS-S-停工
|
*/
|
private String stopWork;
|
/**
|
* LS-S-企业形象
|
*/
|
private String company;
|
|
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;
|
}
|
|
public String getCompany() {
|
return company;
|
}
|
|
public void setCompany(String company) {
|
this.company = company;
|
}
|
}
|