SysDict.java 422 字节
Newer Older
H
hxrui 已提交
1
package com.youlai.admin.pojo.entity;
H
haoxianrui@ 已提交
2

H
haoxr 已提交
3
import com.baomidou.mybatisplus.annotation.IdType;
H
haoxianrui@ 已提交
4
import com.baomidou.mybatisplus.annotation.TableId;
5
import com.youlai.common.base.BaseEntity;
H
haoxianrui@ 已提交
6 7 8
import lombok.Data;

@Data
9
public class SysDict extends BaseEntity {
H
haoxianrui@ 已提交
10

11
    @TableId(type = IdType.AUTO)
H
haoxr 已提交
12
    private Long id;
H
haoxianrui@ 已提交
13

14
    private String code;
H
haoxianrui@ 已提交
15

16
    private String name;
H
haoxianrui@ 已提交
17 18 19

    private Integer status;

20
    private  String  remark;
H
haoxianrui@ 已提交
21 22

}