package com.ruoyi.buss.domain;
|
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* 能效评估项详情对象 ds_effect_assess_list
|
*
|
* @author lx
|
* @date 2025-03-24
|
*/
|
public class DsEffectAssessHis extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** */
|
@Excel(name = "")
|
private Long PKID;
|
|
/** */
|
@Excel(name = "")
|
private Long taskId;
|
|
/** */
|
@Excel(name = "")
|
private String TYPE;
|
|
/** */
|
@Excel(name = "")
|
private String delFlag;
|
|
/** */
|
@Excel(name = "")
|
private String PLAN;
|
|
/** */
|
@Excel(name = "")
|
private String ITEM;
|
|
/** */
|
@Excel(name = "")
|
private String itemDetail;
|
|
/** */
|
@Excel(name = "")
|
private String UNIT;
|
|
/** */
|
@Excel(name = "")
|
private String CODE;
|
|
/** */
|
@Excel(name = "")
|
private String NORMAL;
|
|
/** */
|
@Excel(name = "")
|
private Double WEIGHT;
|
|
/** */
|
@Excel(name = "")
|
private String classifyIndex;
|
|
/** */
|
@Excel(name = "")
|
private Double classifyWeight;
|
|
private Double val;
|
|
private Long deptId;
|
|
public void setPKID(Long PKID)
|
{
|
this.PKID = PKID;
|
}
|
|
public Long getPKID()
|
{
|
return PKID;
|
}
|
|
public Long getTaskId() {
|
return taskId;
|
}
|
|
public void setTaskId(Long taskId) {
|
this.taskId = taskId;
|
}
|
|
public void setTYPE(String TYPE)
|
{
|
this.TYPE = TYPE;
|
}
|
|
public String getTYPE()
|
{
|
return TYPE;
|
}
|
|
public void setDelFlag(String delFlag)
|
{
|
this.delFlag = delFlag;
|
}
|
|
public String getDelFlag()
|
{
|
return delFlag;
|
}
|
|
public void setPLAN(String PLAN)
|
{
|
this.PLAN = PLAN;
|
}
|
|
public String getPLAN()
|
{
|
return PLAN;
|
}
|
|
public void setITEM(String ITEM)
|
{
|
this.ITEM = ITEM;
|
}
|
|
public String getITEM()
|
{
|
return ITEM;
|
}
|
|
public void setItemDetail(String itemDetail)
|
{
|
this.itemDetail = itemDetail;
|
}
|
|
public String getItemDetail()
|
{
|
return itemDetail;
|
}
|
|
public void setUNIT(String UNIT)
|
{
|
this.UNIT = UNIT;
|
}
|
|
public String getUNIT()
|
{
|
return UNIT;
|
}
|
|
public void setCODE(String CODE)
|
{
|
this.CODE = CODE;
|
}
|
|
public String getCODE()
|
{
|
return CODE;
|
}
|
|
public void setNORMAL(String NORMAL)
|
{
|
this.NORMAL = NORMAL;
|
}
|
|
public String getNORMAL()
|
{
|
return NORMAL;
|
}
|
|
public void setWEIGHT(Double WEIGHT)
|
{
|
this.WEIGHT = WEIGHT;
|
}
|
|
public Double getWEIGHT()
|
{
|
return WEIGHT;
|
}
|
|
public void setClassifyIndex(String classifyIndex)
|
{
|
this.classifyIndex = classifyIndex;
|
}
|
|
public String getClassifyIndex()
|
{
|
return classifyIndex;
|
}
|
|
public void setClassifyWeight(Double classifyWeight)
|
{
|
this.classifyWeight = classifyWeight;
|
}
|
|
public Double getClassifyWeight()
|
{
|
return classifyWeight;
|
}
|
|
public DsEffectAssessHis() {
|
}
|
|
public Double getVal() {
|
return val;
|
}
|
|
public void setVal(Double val) {
|
this.val = val;
|
}
|
|
public DsEffectAssessHis(String TYPE, String CODE, Double val, Double WEIGHT, Double classifyWeight) {
|
this.TYPE = TYPE;
|
this.CODE = CODE;
|
this.val = val;
|
this.WEIGHT = WEIGHT;
|
this.classifyWeight = classifyWeight;
|
}
|
|
public Long getDeptId() {
|
return deptId;
|
}
|
|
public void setDeptId(Long deptId) {
|
this.deptId = deptId;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("PKID", getPKID())
|
.append("taskId", getTaskId())
|
.append("TYPE", getTYPE())
|
.append("delFlag", getDelFlag())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("REMARK", getRemark())
|
.append("PLAN", getPLAN())
|
.append("ITEM", getITEM())
|
.append("itemDetail", getItemDetail())
|
.append("UNIT", getUNIT())
|
.append("CODE", getCODE())
|
.append("NORMAL", getNORMAL())
|
.append("WEIGHT", getWEIGHT())
|
.append("classifyIndex", getClassifyIndex())
|
.append("classifyWeight", getClassifyWeight())
|
.toString();
|
}
|
|
|
}
|