You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.5 KiB
60 lines
1.5 KiB
6 years ago
|
/**
|
||
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
||
|
*
|
||
|
* https://www.renren.io
|
||
|
*
|
||
|
* 版权所有,侵权必究!
|
||
|
*/
|
||
|
|
||
|
package com.epmet.dto;
|
||
|
|
||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
|
import com.epmet.commons.tools.validator.group.AddGroup;
|
||
|
import com.epmet.commons.tools.validator.group.DefaultGroup;
|
||
|
import com.epmet.commons.tools.validator.group.UpdateGroup;
|
||
|
import io.swagger.annotations.ApiModel;
|
||
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
import lombok.Data;
|
||
|
|
||
|
import javax.validation.constraints.NotBlank;
|
||
|
import javax.validation.constraints.NotNull;
|
||
|
import javax.validation.constraints.Null;
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 角色管理
|
||
|
*
|
||
|
* @author Mark sunlightcs@gmail.com
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
@Data
|
||
|
@ApiModel(value = "角色管理")
|
||
|
public class SysRoleDTO implements Serializable {
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
@ApiModelProperty(value = "id")
|
||
|
@Null(message="{id.null}", groups = AddGroup.class)
|
||
|
@NotNull(message="{id.require}", groups = UpdateGroup.class)
|
||
|
private Long id;
|
||
|
|
||
|
@ApiModelProperty(value = "角色名称")
|
||
|
@NotBlank(message="{sysrole.name.require}", groups = DefaultGroup.class)
|
||
|
private String name;
|
||
|
|
||
|
@ApiModelProperty(value = "备注")
|
||
|
private String remark;
|
||
|
|
||
|
@ApiModelProperty(value = "创建时间")
|
||
|
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
|
||
|
private Date createDate;
|
||
|
|
||
|
@ApiModelProperty(value = "菜单ID列表")
|
||
|
private List<Long> menuIdList;
|
||
|
|
||
|
@ApiModelProperty(value = "部门ID列表")
|
||
|
private List<Long> deptIdList;
|
||
|
|
||
|
}
|