1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.caimei365.wechat.entity;
- import lombok.Data;
- /**
- * Description
- *
- * @author : Charles
- * @date : 2022/1/14
- */
- @Data
- public class WechatArticleDetail {
- private static final long serialVersionUID = 1L;
- /**
- * Id
- */
- private Integer id;
- /**
- * 图文Id
- */
- private Integer articleId;
- /**
- * 文章标题
- */
- private String title;
- /**
- * 跳转链接
- */
- private String url;
- /**
- * 图片链接
- */
- private String picUrl;
- /**
- * 文章内容
- */
- private String description;
- }
|