ModuleSelectorVo.java 808 B

12345678910111213141516171819202122232425262728
  1. package jnpf.base.model.module;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. @Data
  5. @Schema(description = "菜单选择对象")
  6. public class ModuleSelectorVo {
  7. @Schema(description = "菜单id")
  8. private String id;
  9. @Schema(description = "应用名称")
  10. private String systemName;
  11. @Schema(description = "菜单名称")
  12. private String fullName;
  13. @Schema(description = "菜单编码")
  14. private String enCode;
  15. @Schema(description = "类型")
  16. private Integer type;
  17. @Schema(description = "类型名称")
  18. private String typeName;
  19. @Schema(description = "类型属性信息")
  20. private String propertyJson;
  21. @Schema(description = "表单id")
  22. private String formId;
  23. @Schema(description = "流程id")
  24. private String flowId;
  25. }