SalesDataUploadEntity.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * 销售数据上传表实体
  6. * 表名 mall_sales_data_upload
  7. *
  8. * @author emato
  9. * @email admin@qhdswl.com
  10. * @date 2020-11-16 14:11:53
  11. */
  12. public class SalesDataUploadEntity implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 上传文件编号
  16. */
  17. private Integer fileId;
  18. /**
  19. * 文件名称
  20. */
  21. private String fileName;
  22. /**
  23. * 文件类型
  24. */
  25. private String fileType;
  26. /**
  27. * 上传地址
  28. */
  29. private String uploadAddress;
  30. /**
  31. * 添加人编号
  32. */
  33. private Integer createrSn;
  34. /**
  35. * 添加人姓名
  36. */
  37. private String username;
  38. /**
  39. * 加入时间
  40. */
  41. private Date createrTime;
  42. /**
  43. * 账单时间
  44. */
  45. private Date billTime;
  46. /**
  47. * 核对时间
  48. */
  49. private Date checkTime;
  50. /**
  51. * 商户编号
  52. */
  53. private String merchSN;
  54. /**
  55. * 第三方商户编号
  56. */
  57. private String thirdMerchSN;
  58. /**
  59. * 门店编号
  60. */
  61. private String shopSN;
  62. /**
  63. * 设置:上传文件编号
  64. */
  65. public void setFileId(Integer fileId) {
  66. this.fileId = fileId;
  67. }
  68. /**
  69. * 获取:上传文件编号
  70. */
  71. public Integer getFileId() {
  72. return fileId;
  73. }
  74. /**
  75. * 设置:文件名称
  76. */
  77. public void setFileName(String fileName) {
  78. this.fileName = fileName;
  79. }
  80. /**
  81. * 获取:文件名称
  82. */
  83. public String getFileName() {
  84. return fileName;
  85. }
  86. /**
  87. * 设置:文件类型
  88. */
  89. public void setFileType(String fileType) {
  90. this.fileType = fileType;
  91. }
  92. /**
  93. * 获取:文件类型
  94. */
  95. public String getFileType() {
  96. return fileType;
  97. }
  98. /**
  99. * 设置:上传地址
  100. */
  101. public void setUploadAddress(String uploadAddress) {
  102. this.uploadAddress = uploadAddress;
  103. }
  104. /**
  105. * 获取:上传地址
  106. */
  107. public String getUploadAddress() {
  108. return uploadAddress;
  109. }
  110. /**
  111. * 设置:添加人编号
  112. */
  113. public void setCreaterSn(Integer createrSn) {
  114. this.createrSn = createrSn;
  115. }
  116. /**
  117. * 获取:添加人编号
  118. */
  119. public Integer getCreaterSn() {
  120. return createrSn;
  121. }
  122. /**
  123. * 设置:加入时间
  124. */
  125. public void setCreaterTime(Date createrTime) {
  126. this.createrTime = createrTime;
  127. }
  128. /**
  129. * 获取:加入时间
  130. */
  131. public Date getCreaterTime() {
  132. return createrTime;
  133. }
  134. public String getUsername() {
  135. return username;
  136. }
  137. public void setUsername(String username) {
  138. this.username = username;
  139. }
  140. public Date getBillTime() {
  141. return billTime;
  142. }
  143. public void setBillTime(Date billTime) {
  144. this.billTime = billTime;
  145. }
  146. public Date getCheckTime() {
  147. return checkTime;
  148. }
  149. public void setCheckTime(Date checkTime) {
  150. this.checkTime = checkTime;
  151. }
  152. public String getMerchSN() {
  153. return merchSN;
  154. }
  155. public void setMerchSN(String merchSN) {
  156. this.merchSN = merchSN;
  157. }
  158. public String getShopSN() {
  159. return shopSN;
  160. }
  161. public void setShopSN(String shopSN) {
  162. this.shopSN = shopSN;
  163. }
  164. public String getThirdMerchSN() {
  165. return thirdMerchSN;
  166. }
  167. public void setThirdMerchSN(String thirdMerchSN) {
  168. this.thirdMerchSN = thirdMerchSN;
  169. }
  170. }