xiangpei
7 天以前 56224037cde5a381dbdce941bfc3a4f555584e3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.mybatis.BaseIdAndDeleteEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.time.LocalDateTime;
import java.util.Date;
 
/**
 * 分享记录
 *
 * @author xp
 * @since 2025-06-16
 */
@Data
@TableName("lmk_share")
public class Share extends BaseIdAndDeleteEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("share_type")
    /** 哪个业务的分享 */
    private String shareType;
 
    @TableField("ref_id")
    /** 业务id */
    private String refId;
 
    @TableField("share_user")
    /** 分享人 */
    private String shareUser;
 
    @TableField("share_time")
    /** 分享时间 */
    private Date shareTime;
 
 
}