xiaoyong931011
2022-06-24 b2242780c6994327c105e97a2240e282ee52f90c
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
package com.xcong.farmer.cms.modules.system.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminRoleVo", description = "系统角色列表返回")
public class AdminRoleVo {
 
    @ApiModelProperty(value = "角色ID")
    private Long id;
 
    @ApiModelProperty(value = "角色名称")
    private String roleName;
 
    @ApiModelProperty(value = "拓展备注")
    private String remark;
 
    @ApiModelProperty(value = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
}