xiaogang
2021-03-13 c3b5bbea29386128bb09da0978fb70da0b5dce39
java110-bean/src/main/java/com/java110/dto/smallWeChat/SmallWeChatDto.java
@@ -1,9 +1,11 @@
package com.java110.dto.smallWeChat;
import com.java110.dto.PageDto;
import com.java110.dto.smallWechatAttr.SmallWechatAttrDto;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
 * @ClassName FloorDto
@@ -14,6 +16,10 @@
 * add by wuxw 2019/4/24
 **/
public class SmallWeChatDto extends PageDto implements Serializable {
    public static final String WECHAT_TYPE_PUBLIC = "1100"; // 公众号
    public static final String OBJ_TYPE_COMMUNITY = "1000";// 当前小区
    private Date createTime;
    private String appId;
@@ -28,6 +34,9 @@
    private String objType;
    private String mchId;
    private String objTypeName;
    private String weChatType;
    private List<SmallWechatAttrDto> smallWechatAttrs;
    public Date getCreateTime() {
@@ -133,4 +142,20 @@
    public void setObjTypeName(String objTypeName) {
        this.objTypeName = objTypeName;
    }
    public String getWeChatType() {
        return weChatType;
    }
    public void setWeChatType(String weChatType) {
        this.weChatType = weChatType;
    }
    public List<SmallWechatAttrDto> getSmallWechatAttrs() {
        return smallWechatAttrs;
    }
    public void setSmallWechatAttrs(List<SmallWechatAttrDto> smallWechatAttrs) {
        this.smallWechatAttrs = smallWechatAttrs;
    }
}