2
sunshine
2024-11-05 d1f9fb55a136e589a5ad588ed9a93ce9272917da
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
package com.nova.sankuai.domain.entity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author weikangdi
 * @create 2021/11/16
 */
@ApiModel(value = "角色表")
@Data
public class Role {
 
    @ApiModelProperty(value = "主键")
    private Long id;
 
    @ApiModelProperty(value = "角色名")
    private String name;
 
    @ApiModelProperty(value = "创建日期")
    private Date creationDate;
 
    @ApiModelProperty(value = "默认标志 0-非默认 1-默认")
    private Integer defaultFlag;
 
    @ApiModelProperty(value = "角色编码")
    private Integer roleCode;
}