2025-09-08 17:01:50 +08:00
|
|
|
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;
|
2025-10-22 17:26:11 +08:00
|
|
|
@Schema(description = "状态")
|
|
|
|
|
private Integer status;
|
2025-09-08 17:01:50 +08:00
|
|
|
}
|