BzCabBizCfg.java 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. package com.emato.ich.entity;
  2. /**
  3. * 机柜业务配置对象 bz_cab_biz_cfg
  4. *
  5. * @author yangbo
  6. * @date 2021-06-11
  7. */
  8. public class BzCabBizCfg
  9. {
  10. private static final long serialVersionUID = 1L;
  11. /** 机柜业务配置序号 */
  12. private Long cabBizCfgId;
  13. /** 机柜柜组id */
  14. private Long cabId;
  15. /** 机柜柜组编号 */
  16. private String cabSn;
  17. /** 网点序号,唯一 */
  18. private Long locationId;
  19. /** 启用计费,open:开启,close:关闭 */
  20. private String enableCharge;
  21. /** 启用黑名单,open:开启,close:关闭 */
  22. private String enableBlacklist;
  23. /** 启用白名单,open:开启,close:关闭 */
  24. private String enableWhitelist;
  25. /** 白名单作用对象,0:取件人,1:投递人,2:寄件人,3:商户用户 */
  26. private String whitelistDirectAt;
  27. /** 短信超时时间,分钟 */
  28. private Long smsTimeOut;
  29. /** 滞留件设置,open:开启,close:关闭 */
  30. private String openRetention;
  31. /** 滞留件首次提醒件数,滞留件达到多少件首次提醒 */
  32. private Long retentionFirstAlert;
  33. /** 滞留件禁止投递件数,滞留件达到多少件不允许投递 */
  34. private Long retentionMaxDisable;
  35. /** 短信模板 */
  36. private String smsTemplate;
  37. /** 滞留短信模板 */
  38. private String retentionSmsTemplate;
  39. /** 站点id */
  40. private String stationId;
  41. /** 账户id */
  42. private String accountId;
  43. /** 轨迹上报类型 */
  44. private String traceReportType;
  45. /** 备注 */
  46. private String remarks;
  47. /** 是否有效,0:有效,1:无效 */
  48. private String isValid;
  49. /** 创建人编号 */
  50. private Long creatorId;
  51. /** 修改人编号 */
  52. private Long moderId;
  53. /** 修改时间,yyyy-MM-dd HH:mm:ss */
  54. private String modTime;
  55. /** 快递柜默认手机号*/
  56. private String defaultPhone;
  57. /** 快递柜序号(1、2、3或者A、B、C) */
  58. private String cabSerialNo;
  59. /** 模板类型 0:仅序号1:仅取件码2:序号加取件码 */
  60. private String templateType;
  61. /**
  62. * 柜组详细地址
  63. */
  64. private String address;
  65. /**
  66. * 取件二维码是否展示 0 展示 1:隐藏
  67. */
  68. private String takeQrCodeShow;
  69. /**
  70. * 取件码取件是否展示 0 展示 1:隐藏
  71. */
  72. private String takeButtonShow;
  73. public Long getCabBizCfgId() {
  74. return cabBizCfgId;
  75. }
  76. public void setCabBizCfgId(Long cabBizCfgId) {
  77. this.cabBizCfgId = cabBizCfgId;
  78. }
  79. public Long getCabId() {
  80. return cabId;
  81. }
  82. public void setCabId(Long cabId) {
  83. this.cabId = cabId;
  84. }
  85. public String getCabSn() {
  86. return cabSn;
  87. }
  88. public void setCabSn(String cabSn) {
  89. this.cabSn = cabSn;
  90. }
  91. public Long getLocationId() {
  92. return locationId;
  93. }
  94. public void setLocationId(Long locationId) {
  95. this.locationId = locationId;
  96. }
  97. public String getEnableCharge() {
  98. return enableCharge;
  99. }
  100. public void setEnableCharge(String enableCharge) {
  101. this.enableCharge = enableCharge;
  102. }
  103. public String getEnableBlacklist() {
  104. return enableBlacklist;
  105. }
  106. public void setEnableBlacklist(String enableBlacklist) {
  107. this.enableBlacklist = enableBlacklist;
  108. }
  109. public String getEnableWhitelist() {
  110. return enableWhitelist;
  111. }
  112. public void setEnableWhitelist(String enableWhitelist) {
  113. this.enableWhitelist = enableWhitelist;
  114. }
  115. public String getWhitelistDirectAt() {
  116. return whitelistDirectAt;
  117. }
  118. public void setWhitelistDirectAt(String whitelistDirectAt) {
  119. this.whitelistDirectAt = whitelistDirectAt;
  120. }
  121. public Long getSmsTimeOut() {
  122. return smsTimeOut;
  123. }
  124. public void setSmsTimeOut(Long smsTimeOut) {
  125. this.smsTimeOut = smsTimeOut;
  126. }
  127. public String getOpenRetention() {
  128. return openRetention;
  129. }
  130. public void setOpenRetention(String openRetention) {
  131. this.openRetention = openRetention;
  132. }
  133. public Long getRetentionFirstAlert() {
  134. return retentionFirstAlert;
  135. }
  136. public void setRetentionFirstAlert(Long retentionFirstAlert) {
  137. this.retentionFirstAlert = retentionFirstAlert;
  138. }
  139. public Long getRetentionMaxDisable() {
  140. return retentionMaxDisable;
  141. }
  142. public void setRetentionMaxDisable(Long retentionMaxDisable) {
  143. this.retentionMaxDisable = retentionMaxDisable;
  144. }
  145. public String getSmsTemplate() {
  146. return smsTemplate;
  147. }
  148. public void setSmsTemplate(String smsTemplate) {
  149. this.smsTemplate = smsTemplate;
  150. }
  151. public String getRetentionSmsTemplate() {
  152. return retentionSmsTemplate;
  153. }
  154. public void setRetentionSmsTemplate(String retentionSmsTemplate) {
  155. this.retentionSmsTemplate = retentionSmsTemplate;
  156. }
  157. public String getStationId() {
  158. return stationId;
  159. }
  160. public void setStationId(String stationId) {
  161. this.stationId = stationId;
  162. }
  163. public String getAccountId() {
  164. return accountId;
  165. }
  166. public void setAccountId(String accountId) {
  167. this.accountId = accountId;
  168. }
  169. public String getTraceReportType() {
  170. return traceReportType;
  171. }
  172. public void setTraceReportType(String traceReportType) {
  173. this.traceReportType = traceReportType;
  174. }
  175. public String getRemarks() {
  176. return remarks;
  177. }
  178. public void setRemarks(String remarks) {
  179. this.remarks = remarks;
  180. }
  181. public String getIsValid() {
  182. return isValid;
  183. }
  184. public void setIsValid(String isValid) {
  185. this.isValid = isValid;
  186. }
  187. public Long getCreatorId() {
  188. return creatorId;
  189. }
  190. public void setCreatorId(Long creatorId) {
  191. this.creatorId = creatorId;
  192. }
  193. public Long getModerId() {
  194. return moderId;
  195. }
  196. public void setModerId(Long moderId) {
  197. this.moderId = moderId;
  198. }
  199. public String getModTime() {
  200. return modTime;
  201. }
  202. public void setModTime(String modTime) {
  203. this.modTime = modTime;
  204. }
  205. public String getDefaultPhone() {
  206. return defaultPhone;
  207. }
  208. public void setDefaultPhone(String defaultPhone) {
  209. this.defaultPhone = defaultPhone;
  210. }
  211. public String getCabSerialNo() {
  212. return cabSerialNo;
  213. }
  214. public void setCabSerialNo(String cabSerialNo) {
  215. this.cabSerialNo = cabSerialNo;
  216. }
  217. public String getTemplateType() {
  218. return templateType;
  219. }
  220. public void setTemplateType(String templateType) {
  221. this.templateType = templateType;
  222. }
  223. public String getAddress() {
  224. return address;
  225. }
  226. public void setAddress(String address) {
  227. this.address = address;
  228. }
  229. public String getTakeQrCodeShow() {
  230. return takeQrCodeShow;
  231. }
  232. public void setTakeQrCodeShow(String takeQrCodeShow) {
  233. this.takeQrCodeShow = takeQrCodeShow;
  234. }
  235. public String getTakeButtonShow() {
  236. return takeButtonShow;
  237. }
  238. public void setTakeButtonShow(String takeButtonShow) {
  239. this.takeButtonShow = takeButtonShow;
  240. }
  241. }