GroupInfoVO.java 979 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package jnpf.permission.model.usergroup;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * @author :JNPF开发平台组
  7. * @version: V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date :2022/3/11 9:21
  10. */
  11. @Data
  12. public class GroupInfoVO implements Serializable {
  13. /**
  14. * 主键
  15. **/
  16. @Schema(description = "主键")
  17. private String id;
  18. /**
  19. * 名称
  20. **/
  21. @Schema(description = "名称")
  22. private String fullName;
  23. /**
  24. * 编码
  25. **/
  26. @Schema(description = "编码")
  27. private String enCode;
  28. /**
  29. * 说明
  30. **/
  31. @Schema(description = "说明")
  32. private String description;
  33. /**
  34. * 类型
  35. **/
  36. @Schema(description = "类型")
  37. private String type;
  38. /**
  39. * 排序
  40. **/
  41. @Schema(description = "排序")
  42. private String sortCode;
  43. @Schema(description = "状态")
  44. private Integer enabledMark;
  45. }