添加小程序订阅消息后台管理

This commit is contained in:
xuwenbo
2020-09-02 10:47:29 +08:00
parent 5c75b4c853
commit 56c6836c3c
6 changed files with 17 additions and 38 deletions

View File

@ -47,6 +47,8 @@ public class YxWechatTemplate extends BaseDomain {
/** 状态 */
private Integer status;
/** 类型template:模板消息 subscribe:订阅消息 */
private String type;
public void copy(YxWechatTemplate source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));

View File

@ -36,4 +36,6 @@ public class YxWechatTemplateDto implements Serializable {
/** 状态 */
private Integer status;
/** 类型template:模板消息 subscribe:订阅消息 */
private String type;
}