data-process-spring/src/main/java/com/aqroid/dataprocess/mybatisPlus/dto/KmArticleDto.java

86 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.aqroid.dataprocess.mybatisPlus.dto;
import lombok.Data;
import java.util.Date;
/**
* ฅ(๑ ̀ㅅ ́๑)ฅ这里是阿强ฅ(๑ ̀ㅅ ́๑)ฅ
*/
@Data
public class KmArticleDto {
private String id;
/**
* 文章ID
*/
private String articleId;
/**
* 文章标题
*/
private String articleTitle;
/**
* 文章介绍
*/
private String articleIntroduce;
/**
* 作者
*/
private String articleAuthor;
/**
* 文章图片
*/
private String articlePicture;
/**
* 正文
*/
private String articleText;
/**
* 0为置顶1为普通
*/
private Integer isFirst;
/**
* 0为隐藏1为普通
*/
private Integer isHide;
/**
* 按区分类
*/
private String regionalClassification;
/**
* 按口味分类
*/
private String foodClassification;
/**
*
*/
private Date createdTime;
/**
*
*/
private String createdBy;
/**
*
*/
private Date updatedTime;
/**
*
*/
private String updatedBy;
private KmArticleDetailsDto detailsDto;
}