package com.cabletech.business.ah.familyband.model; import java.util.Date; import com.cabletech.common.base.BaseEntity; /** * * 家庭宽带巡检登记表 * * @author wj * */ public class AhFamilyBandRecode extends BaseEntity { private String contractorId;// 代维公司 private String patrolmanId;// 巡检人 private Date startTime;// 巡检开始时间 private Date endTime;// 巡检结果时间 private String range;// 巡检范围 private int userNum;// 覆盖用户数 private String registerUserId;// 登记人 private Date registerTime;// 登记时间 private String[] devicetype;// 隐患设备类型 private String[] position;// 隐患位置 private String[] remark;// 隐患描述 private Date[] expectendtime;// 预计整治完成时间 /** * @return the contractorId */ public String getContractorId() { return contractorId; } /** * @param contractorId * the contractorId to set */ public void setContractorId(String contractorId) { this.contractorId = contractorId; } /** * @return the patrolmanId */ public String getPatrolmanId() { return patrolmanId; } /** * @param patrolmanId * the patrolmanId to set */ public void setPatrolmanId(String patrolmanId) { this.patrolmanId = patrolmanId; } /** * @return the startTime */ public Date getStartTime() { return startTime; } /** * @param startTime * the startTime to set */ public void setStartTime(Date startTime) { this.startTime = startTime; } /** * @return the endTime */ public Date getEndTime() { return endTime; } /** * @param endTime * the endTime to set */ public void setEndTime(Date endTime) { this.endTime = endTime; } /** * @return the range */ public String getRange() { return range; } /** * @param range * the range to set */ public void setRange(String range) { this.range = range; } /** * @return the userNum */ public int getUserNum() { return userNum; } /** * @param userNum * the userNum to set */ public void setUserNum(int userNum) { this.userNum = userNum; } /** * @return the registerUserId */ public String getRegisterUserId() { return registerUserId; } /** * @param registerUserId * the registerUserId to set */ public void setRegisterUserId(String registerUserId) { this.registerUserId = registerUserId; } /** * @return the registerTime */ public Date getRegisterTime() { return registerTime; } /** * @param registerTime * the registerTime to set */ public void setRegisterTime(Date registerTime) { this.registerTime = registerTime; } public String[] getDevicetype() { return devicetype; } public void setDevicetype(String[] devicetype) { this.devicetype = devicetype; } public String[] getPosition() { return position; } public void setPosition(String[] position) { this.position = position; } public String[] getRemark() { return remark; } public void setRemark(String[] remark) { this.remark = remark; } public Date[] getExpectendtime() { return expectendtime; } public void setExpectendtime(Date[] expectendtime) { this.expectendtime = expectendtime; } }