123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- package com.emato.ich.entity;
- /**
- * 机柜业务配置对象 bz_cab_biz_cfg
- *
- * @author yangbo
- * @date 2021-06-11
- */
- public class BzCabBizCfg
- {
- private static final long serialVersionUID = 1L;
- /** 机柜业务配置序号 */
- private Long cabBizCfgId;
- /** 机柜柜组id */
- private Long cabId;
- /** 机柜柜组编号 */
- private String cabSn;
- /** 网点序号,唯一 */
- private Long locationId;
- /** 启用计费,open:开启,close:关闭 */
- private String enableCharge;
- /** 启用黑名单,open:开启,close:关闭 */
- private String enableBlacklist;
- /** 启用白名单,open:开启,close:关闭 */
- private String enableWhitelist;
- /** 白名单作用对象,0:取件人,1:投递人,2:寄件人,3:商户用户 */
- private String whitelistDirectAt;
- /** 短信超时时间,分钟 */
- private Long smsTimeOut;
- /** 滞留件设置,open:开启,close:关闭 */
- private String openRetention;
- /** 滞留件首次提醒件数,滞留件达到多少件首次提醒 */
- private Long retentionFirstAlert;
- /** 滞留件禁止投递件数,滞留件达到多少件不允许投递 */
- private Long retentionMaxDisable;
- /** 短信模板 */
- private String smsTemplate;
- /** 滞留短信模板 */
- private String retentionSmsTemplate;
- /** 站点id */
- private String stationId;
- /** 账户id */
- private String accountId;
- /** 轨迹上报类型 */
- private String traceReportType;
- /** 备注 */
- private String remarks;
- /** 是否有效,0:有效,1:无效 */
- private String isValid;
- /** 创建人编号 */
- private Long creatorId;
- /** 修改人编号 */
- private Long moderId;
- /** 修改时间,yyyy-MM-dd HH:mm:ss */
- private String modTime;
- /** 快递柜默认手机号*/
- private String defaultPhone;
- /** 快递柜序号(1、2、3或者A、B、C) */
- private String cabSerialNo;
- /** 模板类型 0:仅序号1:仅取件码2:序号加取件码 */
- private String templateType;
- /**
- * 柜组详细地址
- */
- private String address;
- /**
- * 取件二维码是否展示 0 展示 1:隐藏
- */
- private String takeQrCodeShow;
- /**
- * 取件码取件是否展示 0 展示 1:隐藏
- */
- private String takeButtonShow;
- public Long getCabBizCfgId() {
- return cabBizCfgId;
- }
- public void setCabBizCfgId(Long cabBizCfgId) {
- this.cabBizCfgId = cabBizCfgId;
- }
- public Long getCabId() {
- return cabId;
- }
- public void setCabId(Long cabId) {
- this.cabId = cabId;
- }
- public String getCabSn() {
- return cabSn;
- }
- public void setCabSn(String cabSn) {
- this.cabSn = cabSn;
- }
- public Long getLocationId() {
- return locationId;
- }
- public void setLocationId(Long locationId) {
- this.locationId = locationId;
- }
- public String getEnableCharge() {
- return enableCharge;
- }
- public void setEnableCharge(String enableCharge) {
- this.enableCharge = enableCharge;
- }
- public String getEnableBlacklist() {
- return enableBlacklist;
- }
- public void setEnableBlacklist(String enableBlacklist) {
- this.enableBlacklist = enableBlacklist;
- }
- public String getEnableWhitelist() {
- return enableWhitelist;
- }
- public void setEnableWhitelist(String enableWhitelist) {
- this.enableWhitelist = enableWhitelist;
- }
- public String getWhitelistDirectAt() {
- return whitelistDirectAt;
- }
- public void setWhitelistDirectAt(String whitelistDirectAt) {
- this.whitelistDirectAt = whitelistDirectAt;
- }
- public Long getSmsTimeOut() {
- return smsTimeOut;
- }
- public void setSmsTimeOut(Long smsTimeOut) {
- this.smsTimeOut = smsTimeOut;
- }
- public String getOpenRetention() {
- return openRetention;
- }
- public void setOpenRetention(String openRetention) {
- this.openRetention = openRetention;
- }
- public Long getRetentionFirstAlert() {
- return retentionFirstAlert;
- }
- public void setRetentionFirstAlert(Long retentionFirstAlert) {
- this.retentionFirstAlert = retentionFirstAlert;
- }
- public Long getRetentionMaxDisable() {
- return retentionMaxDisable;
- }
- public void setRetentionMaxDisable(Long retentionMaxDisable) {
- this.retentionMaxDisable = retentionMaxDisable;
- }
- public String getSmsTemplate() {
- return smsTemplate;
- }
- public void setSmsTemplate(String smsTemplate) {
- this.smsTemplate = smsTemplate;
- }
- public String getRetentionSmsTemplate() {
- return retentionSmsTemplate;
- }
- public void setRetentionSmsTemplate(String retentionSmsTemplate) {
- this.retentionSmsTemplate = retentionSmsTemplate;
- }
- public String getStationId() {
- return stationId;
- }
- public void setStationId(String stationId) {
- this.stationId = stationId;
- }
- public String getAccountId() {
- return accountId;
- }
- public void setAccountId(String accountId) {
- this.accountId = accountId;
- }
- public String getTraceReportType() {
- return traceReportType;
- }
- public void setTraceReportType(String traceReportType) {
- this.traceReportType = traceReportType;
- }
- public String getRemarks() {
- return remarks;
- }
- public void setRemarks(String remarks) {
- this.remarks = remarks;
- }
- public String getIsValid() {
- return isValid;
- }
- public void setIsValid(String isValid) {
- this.isValid = isValid;
- }
- public Long getCreatorId() {
- return creatorId;
- }
- public void setCreatorId(Long creatorId) {
- this.creatorId = creatorId;
- }
- public Long getModerId() {
- return moderId;
- }
- public void setModerId(Long moderId) {
- this.moderId = moderId;
- }
- public String getModTime() {
- return modTime;
- }
- public void setModTime(String modTime) {
- this.modTime = modTime;
- }
- public String getDefaultPhone() {
- return defaultPhone;
- }
- public void setDefaultPhone(String defaultPhone) {
- this.defaultPhone = defaultPhone;
- }
- public String getCabSerialNo() {
- return cabSerialNo;
- }
- public void setCabSerialNo(String cabSerialNo) {
- this.cabSerialNo = cabSerialNo;
- }
- public String getTemplateType() {
- return templateType;
- }
- public void setTemplateType(String templateType) {
- this.templateType = templateType;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public String getTakeQrCodeShow() {
- return takeQrCodeShow;
- }
- public void setTakeQrCodeShow(String takeQrCodeShow) {
- this.takeQrCodeShow = takeQrCodeShow;
- }
- public String getTakeButtonShow() {
- return takeButtonShow;
- }
- public void setTakeButtonShow(String takeButtonShow) {
- this.takeButtonShow = takeButtonShow;
- }
- }
|