| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package jnpf.model;
- import jnpf.util.treeutil.SumTree;
- import io.swagger.v3.oas.annotations.media.Schema;
- import lombok.Data;
- /**
- * 用户DTO
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @date 2019年9月26日 上午9:18
- */
- @Data
- public class UserMenuModel extends SumTree {
- private String id;
- private String fullName;
- private Integer isButtonAuthorize;
- private Integer isColumnAuthorize;
- private Integer isDataAuthorize;
- private Integer isFormAuthorize;
- private String enCode;
- private String parentId;
- private String icon;
- private String urlAddress;
- private String pageAddress;
- private String linkTarget;
- private Integer type;
- private Integer webType;
- private Boolean isData;
- private Integer enabledMark;
- private Long sortCode;
- private String category;
- private String description;
- private String propertyJson;
- private Integer hasPermission;
- private String systemId;
- private Boolean hasModule;
- private Long creatorTime;
- private Boolean disabled =false;
- }
|