| package com.doumee.dao.web.reqeust; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2024/7/11 17:19 | 
|  */ | 
| @Data | 
| @ApiModel("获取内容海报分享码") | 
| public class ContentShareImgDto { | 
|     @ApiModelProperty(value = "图片地址,完整路径") | 
|     private String imgurl; | 
|     @ApiModelProperty(value = "小程序端页面路径") | 
|     private String pageUrl; | 
|     @ApiModelProperty(value = "关联文章编码") | 
|     private String articleId; | 
|     @ApiModelProperty(value = "分享类型 0海报分享 1下载带小程序码") | 
|     private int type; | 
|   | 
| } |