| | |
| | | /** 成员ID列表(消息接收者,多个接收者用‘|’分隔,最多支持1000个) */ |
| | | private String touSer; |
| | | /** 部门ID列表,多个接收者用‘|’分隔,最多支持100个。 */ |
| | | private String toparty; |
| | | private String toParty; |
| | | /** 标签ID列表,多个接收者用‘|’分隔,最多支持100个。 */ |
| | | private String toTag; |
| | | /** 消息类型 ,此时固定为:miniprogram_notice */ |
| | | private String msgType; |
| | | /** 参数内容 */ |
| | | private TemplateMsgDto miniprogram_notice; |
| | | private TemplateMsgDto minIProgramNotice; |
| | | |
| | | /** 表示是否开启id转译,0表示否,1表示是,默认0 */ |
| | | private Integer enable_id_trans; |
| | | private Integer enableIdTrans; |
| | | /** 表示是否开启重复消息检查,0表示否,1表示是,默认0 */ |
| | | private Integer enable_duplicate_check; |
| | | private Integer enableDuplicateCheck; |
| | | /** 表示是否重复消息检查的时间间隔,默认1800s,最大不超过4小时 */ |
| | | private Integer duplicate_check_interval; |
| | | /** 发送状态 (0: 立即发送; 1:异步发送)*/ |
| | | private Integer sendStatus; |
| | | private Integer duplicateCheckInterval; |
| | | /** 发送模式 (0: 立即发送; 1:异步发送)*/ |
| | | private Integer sendModel; |
| | | |
| | | public String getMsgType() { |
| | | if (!StringUtils.isEmpty(msgType) && !"miniprogram_notice".equals(msgType)){ |
| | |
| | | return msgType; |
| | | } |
| | | public Integer getEnable_id_trans() { |
| | | if (ObjectUtils.isEmpty(enable_id_trans)){ |
| | | if (ObjectUtils.isEmpty(enableIdTrans)){ |
| | | return null; |
| | | } |
| | | return enable_id_trans; |
| | | return enableIdTrans; |
| | | } |
| | | |
| | | public Integer getEnable_duplicate_check() { |
| | | if (ObjectUtils.isEmpty(enable_duplicate_check)){ |
| | | if (ObjectUtils.isEmpty(enableDuplicateCheck)){ |
| | | return null; |
| | | } |
| | | return enable_duplicate_check; |
| | | return enableDuplicateCheck; |
| | | } |
| | | |
| | | public Integer getDuplicate_check_interval() { |
| | | if (ObjectUtils.isEmpty(duplicate_check_interval)){ |
| | | if (ObjectUtils.isEmpty(duplicateCheckInterval)){ |
| | | return null; |
| | | } |
| | | return duplicate_check_interval; |
| | | return duplicateCheckInterval; |
| | | } |
| | | } |