ProvinceInfoVO.java 880 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package jnpf.base.model.province;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * @author JNPF开发平台组
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date 2021/3/12 15:31
  10. */
  11. @Data
  12. public class ProvinceInfoVO {
  13. @Schema(description = "主键")
  14. private String id;
  15. @Schema(description = "名称")
  16. private String fullName;
  17. @Schema(description = "编码")
  18. private String enCode;
  19. @Schema(description = "有效标志")
  20. private Integer enabledMark;
  21. @Schema(description = "说明")
  22. private String description;
  23. @Schema(description = "分类")
  24. private String type;
  25. @Schema(description = "上级id")
  26. private String parentId;
  27. @Schema(description = "上级名称")
  28. private String parentName;
  29. @Schema(description = "排序码")
  30. private long sortCode;
  31. }