| | |
| | | import javax.validation.constraints.Size; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.xinquan.common.core.annotation.Excel; |
| | |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @Data |
| | | public class SysRole extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | @Excel(name = "角色名称") |
| | | @TableField("role_name") |
| | | private String roleName; |
| | | @Excel(name = "角色数量") |
| | | @TableField(exist = false) |
| | | private Integer roleCount; |
| | | |
| | | /** 角色权限 */ |
| | | @Excel(name = "角色权限") |
| | |
| | | .append("remark", getRemark()) |
| | | .toString(); |
| | | } |
| | | |
| | | |
| | | } |