zxl
7 天以前 0fb6b9d8d414822668c401a2b507df1fe6d1fa2d
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
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.mybatis.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import lombok.Data;
 
/**
 * 用户权限管理(商家)
 *
 * @author zxl
 * @since 2025-05-30
 */
@Data
@TableName("lmk_store_member")
public class StoreMember extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("real_name")
    /** 真实姓名 */
    private String realName;
 
    @TableField("member_id")
    /** 会员用户id */
    private String memberId;
 
}