All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kim.sesame.framework.web.entity.IRole Maven / Gradle / Ivy

package kim.sesame.framework.web.entity;


import kim.sesame.framework.entity.BaseEntity;
import lombok.Data;

/**
 * 角色实体接口
 */
@Data
public class IRole extends BaseEntity {

    private String code;//角色编号 唯一
    private String name;//角色名称
    private Integer grade;//角色等级
    private String remark;//备注
    private String notdele;//是否允许删除 : Y/N
    private String active;//是否有效 : Y/N

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy