package com.cabletech.business.ah.rating.model; import java.sql.Date; import com.cabletech.common.base.BaseEntity; /** * 月结果 * @author zhaobi 2012-7-2 */ public class MonthResultForm extends BaseEntity { private static final long serialVersionUID = 1L; /** * 主键 */ private String id; /** * 表ID */ private String tableId; /** * 人员ID */ private String personId; /** * 年月 */ private String yearMonth; /** * 位置 */ private String position; /** * 是否参于 */ private String isExam; /** * 自评分 */ private Integer selfAsseNum; /** * 考评分 */ private Integer examAsseNum; /** * 备注 */ private String remark; /** * 考评日期 */ private Date examDate; /** * 考评人 */ private String examiner; /** * 流程状态 */ private Integer flowState; /** * @return the id */ public String getId() { return id; } /** * @param id the id to set */ public void setId(String id) { this.id = id; } /** * @return the tableId */ public String getTableId() { return tableId; } /** * @param tableId the tableId to set */ public void setTableId(String tableId) { this.tableId = tableId; } /** * @return the personId */ public String getPersonId() { return personId; } /** * @param personId the personId to set */ public void setPersonId(String personId) { this.personId = personId; } /** * @return the yearMonth */ public String getYearMonth() { return yearMonth; } /** * @param yearMonth the yearMonth to set */ public void setYearMonth(String yearMonth) { this.yearMonth = yearMonth; } /** * @return the position */ public String getPosition() { return position; } /** * @param position the position to set */ public void setPosition(String position) { this.position = position; } /** * @return the isExam */ public String getIsExam() { return isExam; } /** * @param isExam the isExam to set */ public void setIsExam(String isExam) { this.isExam = isExam; } /** * @return the selfAsseNum */ public Integer getSelfAsseNum() { return selfAsseNum; } /** * @param selfAsseNum the selfAsseNum to set */ public void setSelfAsseNum(Integer selfAsseNum) { this.selfAsseNum = selfAsseNum; } /** * @return the examAsseNum */ public Integer getExamAsseNum() { return examAsseNum; } /** * @param examAsseNum the examAsseNum to set */ public void setExamAsseNum(Integer examAsseNum) { this.examAsseNum = examAsseNum; } /** * @return the remark */ public String getRemark() { return remark; } /** * @param remark the remark to set */ public void setRemark(String remark) { this.remark = remark; } /** * @return the examDate */ public Date getExamDate() { return examDate; } /** * @param examDate the examDate to set */ public void setExamDate(Date examDate) { this.examDate = examDate; } /** * @return the examiner */ public String getExaminer() { return examiner; } /** * @param examiner the examiner to set */ public void setExaminer(String examiner) { this.examiner = examiner; } /** * @return the flowState */ public Integer getFlowState() { return flowState; } /** * @param flowState the flowState to set */ public void setFlowState(Integer flowState) { this.flowState = flowState; } }