IndexViewInfo.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.sooka.sponest.data.index.domain;
  2. import com.sooka.sponest.data.base.domain.BaseBusinessEntity;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. /**
  7. * 首页View对象
  8. */
  9. @Data
  10. @ApiModel(description = "首页View对象")
  11. public class IndexViewInfo extends BaseBusinessEntity {
  12. /**
  13. * 基础数据列表-类别
  14. */
  15. @ApiModelProperty(value = "基础数据列表-类别", required = false)
  16. private String category;
  17. /*
  18. * 基础数据列表-类别(英文)
  19. *
  20. * @author 韩福成
  21. * @date 2023/12/19 16:39
  22. */
  23. @ApiModelProperty(value = "基础数据列表-类别(英文)", required = false)
  24. private String categoryEnglish;
  25. /**
  26. * 基础数据列表-小类
  27. */
  28. @ApiModelProperty(value = "基础数据列表-小类", required = false)
  29. private Long subclass;
  30. /**
  31. * 基础数据列表-条数
  32. */
  33. @ApiModelProperty(value = "基础数据列表-条数", required = false)
  34. private Long count;
  35. /**
  36. * 基础数据列表-菜单ID
  37. */
  38. @ApiModelProperty(value = "基础数据列表-菜单ID", required = false)
  39. private Integer menuId;
  40. /*
  41. * 数据更新数
  42. */
  43. @ApiModelProperty(value = "数据更新数", required = false)
  44. private Long updataCount;
  45. }