top.beanshell.rbac.controller.request.RbacRoleUpdateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ram-rbac-endpoint Show documentation
Show all versions of ram-rbac-endpoint Show documentation
ram rbac base component --- restful api impl.
The newest version!
package top.beanshell.rbac.controller.request;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.validation.constraints.NotNull;
/**
* 更新角色信息请求参数
* @author binchao
*/
@EqualsAndHashCode(callSuper = true)
@Data
public class RbacRoleUpdateRequest extends RbacRoleSaveRequest {
/**
* ID必填
*/
@NotNull(message = "{i18n.request.valid.id}")
private Long id;
}