| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @ClassName MgtArticleEditDto |
| | | * @Description TODO |
| | |
| | | @ApiModelProperty(value = "文章标题") |
| | | private String articleTitle; |
| | | |
| | | @ApiModelProperty(value = "文章简介") |
| | | private String articleIntroduce; |
| | | |
| | | @ApiModelProperty(value = "文章详情") |
| | | private String articleDetail; |
| | | |
| | | @ApiModelProperty(value = "文章封面") |
| | | private String articleCover; |
| | | |
| | | @ApiModelProperty(value = "文章标题") |
| | | private Date createTime; |
| | | |
| | | @ApiModelProperty(value = "文章视频") |
| | | private String articleVideo; |