46 lines
792 B
Java
46 lines
792 B
Java
package com.kexue.skills.entity.dto;
|
|
|
|
import com.kexue.skills.entity.base.BaseQueryDto;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* (CmsContent)查询DTO类
|
|
*
|
|
* @author 王志维
|
|
* @since 2025-02-21 23:01:48
|
|
*/
|
|
@Data
|
|
public class CmsContentDto extends BaseQueryDto {
|
|
|
|
private Long contentId;
|
|
|
|
private String title;
|
|
|
|
private Integer contentType;
|
|
|
|
private String categoryIds;
|
|
|
|
private Long categoryId;
|
|
|
|
private List<String> categoryIdList;
|
|
|
|
private Boolean isOfficial;
|
|
|
|
private Integer shareCount;
|
|
|
|
private Long authorId;
|
|
|
|
private String authorName;
|
|
|
|
private Integer auditStatus;
|
|
|
|
private Integer publishStatus;
|
|
|
|
private String createBy;
|
|
|
|
private Integer deleteFlag;
|
|
|
|
}
|