package cn.lili.modules.lmk.domain.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
|
/**
|
* 分享行为记录实体类
|
* 对应SQL查询结果的实体映射
|
*/
|
@Data
|
public class ShareActionRecordVO {
|
/**
|
* 用户昵称
|
*/
|
private String nickName;
|
|
/**
|
* 页面编码
|
*/
|
private String pageCode;
|
|
/**
|
* 分享选项(具体值根据业务定义)
|
*/
|
private String shareOption;
|
|
/**
|
* 用户ID
|
*/
|
private Long userId;
|
|
/**
|
* 创建时间(分享行为发生时间)
|
*/
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date createTime;
|
|
/**
|
* 中文页面名称
|
*/
|
private String pageNameCn;
|
}
|