You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
275 B
Java

package cn.zyp.stusystem.vo;
import lombok.Data;
@Data
public class PermissionVO {
private String code; // 权限码
private String name; // 权限名称
private String module; // 所属模块
private String moduleName; // 模块名称
}