1
0

SalesDataUploadEntity.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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. private String shopName;
  66. /**
  67. * 设置:上传文件编号
  68. */
  69. public void setFileId(Integer fileId) {
  70. this.fileId = fileId;
  71. }
  72. /**
  73. * 获取:上传文件编号
  74. */
  75. public Integer getFileId() {
  76. return fileId;
  77. }
  78. /**
  79. * 设置:文件名称
  80. */
  81. public void setFileName(String fileName) {
  82. this.fileName = fileName;
  83. }
  84. /**
  85. * 获取:文件名称
  86. */
  87. public String getFileName() {
  88. return fileName;
  89. }
  90. /**
  91. * 设置:文件类型
  92. */
  93. public void setFileType(String fileType) {
  94. this.fileType = fileType;
  95. }
  96. /**
  97. * 获取:文件类型
  98. */
  99. public String getFileType() {
  100. return fileType;
  101. }
  102. /**
  103. * 设置:上传地址
  104. */
  105. public void setUploadAddress(String uploadAddress) {
  106. this.uploadAddress = uploadAddress;
  107. }
  108. /**
  109. * 获取:上传地址
  110. */
  111. public String getUploadAddress() {
  112. return uploadAddress;
  113. }
  114. /**
  115. * 设置:添加人编号
  116. */
  117. public void setCreaterSn(Integer createrSn) {
  118. this.createrSn = createrSn;
  119. }
  120. /**
  121. * 获取:添加人编号
  122. */
  123. public Integer getCreaterSn() {
  124. return createrSn;
  125. }
  126. /**
  127. * 设置:加入时间
  128. */
  129. public void setCreaterTime(Date createrTime) {
  130. this.createrTime = createrTime;
  131. }
  132. /**
  133. * 获取:加入时间
  134. */
  135. public Date getCreaterTime() {
  136. return createrTime;
  137. }
  138. public String getUsername() {
  139. return username;
  140. }
  141. public void setUsername(String username) {
  142. this.username = username;
  143. }
  144. public Date getBillTime() {
  145. return billTime;
  146. }
  147. public void setBillTime(Date billTime) {
  148. this.billTime = billTime;
  149. }
  150. public Date getCheckTime() {
  151. return checkTime;
  152. }
  153. public void setCheckTime(Date checkTime) {
  154. this.checkTime = checkTime;
  155. }
  156. public String getMerchSN() {
  157. return merchSN;
  158. }
  159. public void setMerchSN(String merchSN) {
  160. this.merchSN = merchSN;
  161. }
  162. public String getShopSN() {
  163. return shopSN;
  164. }
  165. public void setShopSN(String shopSN) {
  166. this.shopSN = shopSN;
  167. }
  168. public String getShopName() {
  169. return shopName;
  170. }
  171. public void setShopName(String shopName) {
  172. this.shopName = shopName;
  173. }
  174. public String getThirdMerchSN() {
  175. return thirdMerchSN;
  176. }
  177. public void setThirdMerchSN(String thirdMerchSN) {
  178. this.thirdMerchSN = thirdMerchSN;
  179. }
  180. }