package com.cabletech.business.ah.familyband.model; import java.util.Date; import com.cabletech.common.base.BaseEntity; /** * * 家庭宽带巡检隐患登记表 * @author wj * */ public class AhFamilyBandTrouble extends BaseEntity{ /** * 巡检记录 */ private String recodeId; /** * 隐患设备类型 */ private String deviceType; /** * 隐患位置 */ private String position; /** * 隐患描述 */ private String remark; /** * 预计整治完成时间 */ private Date expectEndTime; /** * 隐患状态 */ private String status; /** * 处理完成时间 */ private Date handleTime; /** * 处理过程描述 */ private String handleRemark; /** * 处理结果 */ private String handleResult; /** * 处理填写人 */ private String registeryserId; /** * 处理填写时间 */ private Date registerTime; /*** * 自动生成的编码 */ private String ordernumber; public String getOrdernumber() { return ordernumber; } public void setOrdernumber(String ordernumber) { this.ordernumber = ordernumber; } /** * @return the recodeId */ public String getRecodeId() { return recodeId; } /** * @param recodeId the recodeId to set */ public void setRecodeId(String recodeId) { this.recodeId = recodeId; } /** * @return the deviceType */ public String getDeviceType() { return deviceType; } /** * @param deviceType the deviceType to set */ public void setDeviceType(String deviceType) { this.deviceType = deviceType; } /** * @return the position */ public String getPosition() { return position; } /** * @param position the position to set */ public void setPosition(String position) { this.position = position; } /** * @return the remark */ public String getRemark() { return remark; } /** * @param remark the remark to set */ public void setRemark(String remark) { this.remark = remark; } /** * @return the expectEndTime */ public Date getExpectEndTime() { return expectEndTime; } /** * @param expectEndTime the expectEndTime to set */ public void setExpectEndTime(Date expectEndTime) { this.expectEndTime = expectEndTime; } /** * @return the status */ public String getStatus() { return status; } /** * @param status the status to set */ public void setStatus(String status) { this.status = status; } /** * @return the handleTime */ public Date getHandleTime() { return handleTime; } /** * @param handleTime the handleTime to set */ public void setHandleTime(Date handleTime) { this.handleTime = handleTime; } /** * @return the handleRemark */ public String getHandleRemark() { return handleRemark; } /** * @param handleRemark the handleRemark to set */ public void setHandleRemark(String handleRemark) { this.handleRemark = handleRemark; } /** * @return the handleResult */ public String getHandleResult() { return handleResult; } /** * @param handleResult the handleResult to set */ public void setHandleResult(String handleResult) { this.handleResult = handleResult; } /** * @return the registeryserId */ public String getRegisteryserId() { return registeryserId; } /** * @param registeryserId the registeryserId to set */ public void setRegisteryserId(String registeryserId) { this.registeryserId = registeryserId; } /** * @return the registerTime */ public Date getRegisterTime() { return registerTime; } /** * @param registerTime the registerTime to set */ public void setRegisterTime(Date registerTime) { this.registerTime = registerTime; } }