添加工作人员管理、转发人员配置-基础类
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.ruoyi.cms.domain.vo;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class WechatGroupVo {
|
||||
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date createTime;
|
||||
private Long id;
|
||||
private String name;
|
||||
private Integer isPush;
|
||||
private String wechatNumber;
|
||||
private String phoneNumber;
|
||||
private String wechatName;
|
||||
private Long communityId;
|
||||
}
|
||||
Reference in New Issue
Block a user