123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- package com.kmall.admin.entity;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 销售数据上传表实体
- * 表名 mall_sales_data_upload
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2020-11-16 14:11:53
- */
- public class SalesDataUploadEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 上传文件编号
- */
- private Integer fileId;
- /**
- * 文件名称
- */
- private String fileName;
- /**
- * 文件类型
- */
- private String fileType;
- /**
- * 上传地址
- */
- private String uploadAddress;
- /**
- * 添加人编号
- */
- private Integer createrSn;
- /**
- * 添加人姓名
- */
- private String username;
- /**
- * 加入时间
- */
- private Date createrTime;
- /**
- * 账单时间
- */
- private Date billTime;
- /**
- * 核对时间
- */
- private Date checkTime;
- /**
- * 商户编号
- */
- private String merchSN;
- /**
- * 第三方商户编号
- */
- private String thirdMerchSN;
- /**
- * 门店编号
- */
- private String shopSN;
- /**
- * 门店名称
- */
- private String shopName;
- /**
- * 设置:上传文件编号
- */
- public void setFileId(Integer fileId) {
- this.fileId = fileId;
- }
- /**
- * 获取:上传文件编号
- */
- public Integer getFileId() {
- return fileId;
- }
- /**
- * 设置:文件名称
- */
- public void setFileName(String fileName) {
- this.fileName = fileName;
- }
- /**
- * 获取:文件名称
- */
- public String getFileName() {
- return fileName;
- }
- /**
- * 设置:文件类型
- */
- public void setFileType(String fileType) {
- this.fileType = fileType;
- }
- /**
- * 获取:文件类型
- */
- public String getFileType() {
- return fileType;
- }
- /**
- * 设置:上传地址
- */
- public void setUploadAddress(String uploadAddress) {
- this.uploadAddress = uploadAddress;
- }
- /**
- * 获取:上传地址
- */
- public String getUploadAddress() {
- return uploadAddress;
- }
- /**
- * 设置:添加人编号
- */
- public void setCreaterSn(Integer createrSn) {
- this.createrSn = createrSn;
- }
- /**
- * 获取:添加人编号
- */
- public Integer getCreaterSn() {
- return createrSn;
- }
- /**
- * 设置:加入时间
- */
- public void setCreaterTime(Date createrTime) {
- this.createrTime = createrTime;
- }
- /**
- * 获取:加入时间
- */
- public Date getCreaterTime() {
- return createrTime;
- }
- public String getUsername() {
- return username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- public Date getBillTime() {
- return billTime;
- }
- public void setBillTime(Date billTime) {
- this.billTime = billTime;
- }
- public Date getCheckTime() {
- return checkTime;
- }
- public void setCheckTime(Date checkTime) {
- this.checkTime = checkTime;
- }
- public String getMerchSN() {
- return merchSN;
- }
- public void setMerchSN(String merchSN) {
- this.merchSN = merchSN;
- }
- public String getShopSN() {
- return shopSN;
- }
- public void setShopSN(String shopSN) {
- this.shopSN = shopSN;
- }
- public String getShopName() {
- return shopName;
- }
- public void setShopName(String shopName) {
- this.shopName = shopName;
- }
- public String getThirdMerchSN() {
- return thirdMerchSN;
- }
- public void setThirdMerchSN(String thirdMerchSN) {
- this.thirdMerchSN = thirdMerchSN;
- }
- }
|