GroupVO.java 899 B

12345678910111213141516171819202122232425262728293031323334
  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. * 用户分组管理列表返回
  7. *
  8. * @author :JNPF开发平台组
  9. * @version: V3.1.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date :2022/3/11 8:58
  12. */
  13. @Data
  14. public class GroupVO implements Serializable {
  15. @Schema(description = "主键")
  16. private String id;
  17. @Schema(description = "名称")
  18. private String fullName;
  19. @Schema(description = "编码")
  20. private String enCode;
  21. @Schema(description = "类型")
  22. private String type;
  23. @Schema(description = "说明")
  24. private String description;
  25. @Schema(description = "排序码")
  26. private Long sortCode;
  27. @Schema(description = "创建时间")
  28. private Long creatorTime;
  29. @Schema(description = "创建时间")
  30. private Integer enabledMark;
  31. }