b8f27885292044e552fda5e18b3409328875f6a4.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package org.jeecg.modules.online.cgreport.entity;
  2. import org.jeecgframework.poi.excel.annotation.Excel;
  3. import org.jeecg.common.system.base.entity.JeecgEntity;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import io.swagger.annotations.ApiModel;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. @Data
  11. @TableName("CS_DIAGRAM_COMBINATION_DETAIL")
  12. @Accessors(chain = true)
  13. @EqualsAndHashCode(callSuper = false)
  14. @ApiModel(value = "图表组合明细", description = "图表组合明细")
  15. public class DiagramCombinationDetail extends JeecgEntity {
  16. private static final long serialVersionUID = 8066142514369533464L;
  17. @Excel(name = "组合报表ID", width = 15)
  18. @ApiModelProperty(value = "组合报表ID")
  19. private String graphreportTempletId;
  20. @Excel(name = "图表编码", width = 15)
  21. @ApiModelProperty(value = "图表编码")
  22. private String graphreportCode;
  23. @Excel(name = "图表类型", width = 15)
  24. @ApiModelProperty(value = "图表类型")
  25. private String graphreportType;
  26. @Excel(name = "分组编号", width = 15)
  27. @ApiModelProperty(value = "分组编号")
  28. private Integer groupNum;
  29. @Excel(name = "分组展示风格", width = 15)
  30. @ApiModelProperty(value = "分组展示风格")
  31. private String groupStyle;
  32. @Excel(name = "分组描述", width = 15)
  33. @ApiModelProperty(value = "分组描述")
  34. private String groupTxt;
  35. @Excel(name = "分组栅格数", width = 15)
  36. @ApiModelProperty(value = "分组栅格数")
  37. private String groupGrid;
  38. @Excel(name = "组合报表栅格数", width = 15)
  39. @ApiModelProperty(value = "组合报表栅格数")
  40. private String templetGrid;
  41. @Excel(name = "排序", width = 15)
  42. @ApiModelProperty(value = "排序")
  43. private Integer orderNum;
  44. @Excel(name = "是否显示", width = 15)
  45. @ApiModelProperty(value = "是否显示")
  46. private String isShow;
  47. }