package com.cabletech.business.ah.excelreport.model; import java.util.Date; import com.cabletech.common.base.BaseEntity; /** * * 地市每个月上传的excel报表 * * @author wj * @author 杨隽 2012-07-09 添加表格名称属性 * */ public class AhExcelReportRecode extends BaseEntity { private String id;// ID private String regionId;// 区域 private String uploadUserId;// 上传人 private Date uploadTime;// 上传时间 private String fileUrl;// 上传文件路径 private Date reportDate;// 报表对应的年月 private String reportSheetType;// 表格类型 private String sumType;// 汇总类型 private String sheetName;// 表格名称 public String getSheetName() { return sheetName; } public void setSheetName(String sheetName) { this.sheetName = sheetName; } /** * @return the id */ public String getId() { return id; } /** * @param id * the id to set */ public void setId(String id) { this.id = id; } /** * @return the regionId */ public String getRegionId() { return regionId; } /** * @param regionId * the regionId to set */ public void setRegionId(String regionId) { this.regionId = regionId; } /** * @return the uploadUserId */ public String getUploadUserId() { return uploadUserId; } /** * @param uploadUserId * the uploadUserId to set */ public void setUploadUserId(String uploadUserId) { this.uploadUserId = uploadUserId; } /** * @return the uploadTime */ public Date getUploadTime() { return uploadTime; } /** * @param uploadTime * the uploadTime to set */ public void setUploadTime(Date uploadTime) { this.uploadTime = uploadTime; } /** * @return the fileUrl */ public String getFileUrl() { return fileUrl; } /** * @param fileUrl * the fileUrl to set */ public void setFileUrl(String fileUrl) { this.fileUrl = fileUrl; } /** * @return the reportDate */ public Date getReportDate() { return reportDate; } /** * @param reportDate * the reportDate to set */ public void setReportDate(Date reportDate) { this.reportDate = reportDate; } public String getReportSheetType() { return reportSheetType; } public void setReportSheetType(String reportSheetType) { this.reportSheetType = reportSheetType; } public String getSumType() { return sumType; } public void setSumType(String sumType) { this.sumType = sumType; } }