| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package com.ylx.massage.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.time.LocalDateTime;
- /**
- * 动态媒体表
- */
- @Data
- @TableName("t_moment_media")
- public class MomentMedia {
- /**
- * 主键ID
- */
- @TableId(type = IdType.AUTO)
- private Long id;
- /**
- * 动态ID
- */
- private Long momentId;
- /**
- * 媒体URL
- */
- private String mediaUrl;
- /**
- * 媒体类型:1-图片,2-视频
- */
- private Integer mediaType;
- /**
- * 排序
- */
- private Integer sortOrder;
- /**
- * 创建时间
- */
- private LocalDateTime createTime;
- /**
- * 文件大小(字节)
- */
- private Long fileSize;
- /**
- * 文件格式:jpg/png/mp4等
- */
- private String fileFormat;
- }
|