| | |
| | | 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 |
| | |
| | | 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; |
| | |
| | | private String mchId; |
| | | private String objTypeName; |
| | | private String weChatType; |
| | | |
| | | private List<SmallWechatAttrDto> smallWechatAttrs; |
| | | |
| | | |
| | | public Date getCreateTime() { |
| | |
| | | public void setWeChatType(String weChatType) { |
| | | this.weChatType = weChatType; |
| | | } |
| | | |
| | | public List<SmallWechatAttrDto> getSmallWechatAttrs() { |
| | | return smallWechatAttrs; |
| | | } |
| | | |
| | | public void setSmallWechatAttrs(List<SmallWechatAttrDto> smallWechatAttrs) { |
| | | this.smallWechatAttrs = smallWechatAttrs; |
| | | } |
| | | } |