17 lines
427 B
Java
17 lines
427 B
Java
package com.yj.earth.dto.role;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class AddRoleDto {
|
|
@Schema(description = "角色名称")
|
|
private String roleName;
|
|
@Schema(description = "角色描述")
|
|
private String description;
|
|
@Schema(description = "是否超级管理员")
|
|
private Integer isSuper;
|
|
@Schema(description = "状态")
|
|
private Integer status;
|
|
}
|