package com.cabletech.business.assess.model; import com.cabletech.common.base.BaseEntity; /** * 模版-考核内容实体 * * @author 杨隽 2012-07-31 创建 * */ public class AssessTemplateContent extends BaseEntity { /** * 序列化编号 */ private static final long serialVersionUID = 1L; /** * 项目名称 */ private String itemName; /** * 项目编号 */ private String itemId; /** * 指标名称 */ private String name = ""; /** * 基准值 */ private double benchmarkValue = 0d; /** * 挑战值 */ private double challengeValue = 0d; /** * 权重分 */ private double weight = 0d; /** * 公式和要求 */ private String demandDesc = ""; /** * 评分指标 */ private String evaluationCriterion = ""; /** * 关联考核表ID */ private String tableid; public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getBenchmarkValue() { return benchmarkValue; } public void setBenchmarkValue(double benchmarkValue) { this.benchmarkValue = benchmarkValue; } public double getChallengeValue() { return challengeValue; } public void setChallengeValue(double challengeValue) { this.challengeValue = challengeValue; } public double getWeight() { return weight; } public void setWeight(double weight) { this.weight = weight; } public String getDemandDesc() { return demandDesc; } public void setDemandDesc(String demandDesc) { this.demandDesc = demandDesc; } public String getEvaluationCriterion() { return evaluationCriterion; } public void setEvaluationCriterion(String evaluationCriterion) { this.evaluationCriterion = evaluationCriterion; } /** * @return the itemName */ public String getItemName() { return itemName; } /** * @param itemName the itemName to set */ public void setItemName(String itemName) { this.itemName = itemName; } /** * @return the tableid */ public String getTableid() { return tableid; } /** * @param tableid the tableid to set */ public void setTableid(String tableid) { this.tableid = tableid; } }