java110
2022-04-02 7587029efa9122271ba120a45313df743eacf27a
java110-bean/src/main/java/com/java110/dto/smallWeChat/SmallWeChatDto.java
old mode 100644 new mode 100755
@@ -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;
@@ -29,6 +35,8 @@
    private String mchId;
    private String objTypeName;
    private String weChatType;
    private List<SmallWechatAttrDto> smallWechatAttrs;
    public Date getCreateTime() {
@@ -142,4 +150,12 @@
    public void setWeChatType(String weChatType) {
        this.weChatType = weChatType;
    }
    public List<SmallWechatAttrDto> getSmallWechatAttrs() {
        return smallWechatAttrs;
    }
    public void setSmallWechatAttrs(List<SmallWechatAttrDto> smallWechatAttrs) {
        this.smallWechatAttrs = smallWechatAttrs;
    }
}