Mall2ReminderRulesConfigEntity.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. package com.kmall.admin.entity.alarm;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * 提醒规则配置表实体
  6. * 表名 mall2_reminder_rules_config
  7. *
  8. * @author emato
  9. * @email admin@qhdswl.com
  10. * @date 2020-06-18 13:59:51
  11. */
  12. public class Mall2ReminderRulesConfigEntity implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 规则配置id
  16. */
  17. private Integer mrrcId;
  18. /**
  19. * 商户编号
  20. */
  21. private String merchSn;
  22. private String merchName;
  23. /**
  24. * 第三方商户编号
  25. */
  26. private String thridMerchSn;
  27. private String thridMerchName;
  28. /**
  29. * 提醒类别 0.出货提醒 1.订货提醒
  30. */
  31. private String reminderCategory;
  32. /**
  33. * 提醒类型 00.固定值 10.周期计算(天)
  34. */
  35. private String reminderType;
  36. /**
  37. * 提醒值
  38. */
  39. private Integer reminderValue;
  40. /**
  41. * 创建人编号
  42. */
  43. private String createrSn;
  44. /**
  45. * 创建时间,yyyy-MM-dd HH:mm:ss
  46. */
  47. private Date createTime;
  48. /**
  49. * 修改人编号
  50. */
  51. private String moderSn;
  52. /**
  53. * 修改时间,yyyy-MM-dd HH:mm:ss
  54. */
  55. private Date modTime;
  56. /**
  57. * 时间戳
  58. */
  59. private Date tstm;
  60. /**
  61. * 设置:规则配置id
  62. */
  63. public void setMrrcId(Integer mrrcId) {
  64. this.mrrcId = mrrcId;
  65. }
  66. /**
  67. * 获取:规则配置id
  68. */
  69. public Integer getMrrcId() {
  70. return mrrcId;
  71. }
  72. /**
  73. * 设置:商户编号
  74. */
  75. public void setMerchSn(String merchSn) {
  76. this.merchSn = merchSn;
  77. }
  78. /**
  79. * 获取:商户编号
  80. */
  81. public String getMerchSn() {
  82. return merchSn;
  83. }
  84. /**
  85. * 设置:第三方商户编号
  86. */
  87. public void setThridMerchSn(String thridMerchSn) {
  88. this.thridMerchSn = thridMerchSn;
  89. }
  90. /**
  91. * 获取:第三方商户编号
  92. */
  93. public String getThridMerchSn() {
  94. return thridMerchSn;
  95. }
  96. /**
  97. * 设置:提醒类别 0.出货提醒 1.订货提醒
  98. */
  99. public void setReminderCategory(String reminderCategory) {
  100. this.reminderCategory = reminderCategory;
  101. }
  102. /**
  103. * 获取:提醒类别 0.出货提醒 1.订货提醒
  104. */
  105. public String getReminderCategory() {
  106. return reminderCategory;
  107. }
  108. /**
  109. * 设置:提醒类型 00.固定值 10.周期计算(天)
  110. */
  111. public void setReminderType(String reminderType) {
  112. this.reminderType = reminderType;
  113. }
  114. /**
  115. * 获取:提醒类型 00.固定值 10.周期计算(天)
  116. */
  117. public String getReminderType() {
  118. return reminderType;
  119. }
  120. /**
  121. * 设置:提醒值
  122. */
  123. public void setReminderValue(Integer reminderValue) {
  124. this.reminderValue = reminderValue;
  125. }
  126. /**
  127. * 获取:提醒值
  128. */
  129. public Integer getReminderValue() {
  130. return reminderValue;
  131. }
  132. /**
  133. * 设置:创建人编号
  134. */
  135. public void setCreaterSn(String createrSn) {
  136. this.createrSn = createrSn;
  137. }
  138. /**
  139. * 获取:创建人编号
  140. */
  141. public String getCreaterSn() {
  142. return createrSn;
  143. }
  144. /**
  145. * 设置:创建时间,yyyy-MM-dd HH:mm:ss
  146. */
  147. public void setCreateTime(Date createTime) {
  148. this.createTime = createTime;
  149. }
  150. /**
  151. * 获取:创建时间,yyyy-MM-dd HH:mm:ss
  152. */
  153. public Date getCreateTime() {
  154. return createTime;
  155. }
  156. /**
  157. * 设置:修改人编号
  158. */
  159. public void setModerSn(String moderSn) {
  160. this.moderSn = moderSn;
  161. }
  162. /**
  163. * 获取:修改人编号
  164. */
  165. public String getModerSn() {
  166. return moderSn;
  167. }
  168. /**
  169. * 设置:修改时间,yyyy-MM-dd HH:mm:ss
  170. */
  171. public void setModTime(Date modTime) {
  172. this.modTime = modTime;
  173. }
  174. /**
  175. * 获取:修改时间,yyyy-MM-dd HH:mm:ss
  176. */
  177. public Date getModTime() {
  178. return modTime;
  179. }
  180. /**
  181. * 设置:时间戳
  182. */
  183. public void setTstm(Date tstm) {
  184. this.tstm = tstm;
  185. }
  186. /**
  187. * 获取:时间戳
  188. */
  189. public Date getTstm() {
  190. return tstm;
  191. }
  192. public String getMerchName() {
  193. return merchName;
  194. }
  195. public void setMerchName(String merchName) {
  196. this.merchName = merchName;
  197. }
  198. public String getThridMerchName() {
  199. return thridMerchName;
  200. }
  201. public void setThridMerchName(String thridMerchName) {
  202. this.thridMerchName = thridMerchName;
  203. }
  204. }