| | |
| | | package com.mzl.flower.entity.film; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | import com.mzl.flower.base.BaseAutoEntity; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 状态(0禁用,1启用) |
| | | */ |
| | | private Integer status; |
| | | private String status; |
| | | |
| | | /** |
| | | * 创建者ID |
| | |
| | | */ |
| | | private Integer shareCount; |
| | | |
| | | @ApiModelProperty("发布日期") |
| | | private LocalDate publishDate; |
| | | |
| | | private String coverTitle; |
| | | |
| | | private String tag; |
| | | |
| | | // 生成的文章内容 |
| | | private String filmContent; |
| | | |
| | | |
| | | // 生成的图片 |
| | | private String filmPictures; |
| | | |
| | | |
| | | |
| | | } |