Files
yjearth/src/main/java/com/yj/earth/dto/role/AddRoleDto.java
ZZX9599 6b9aef1acd 更新
2025-10-22 17:26:11 +08:00

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;
}