51f8f0a9edc3027d68d29ad14c5796945b534e51.svn-base 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. /**
  11. * @Description: 查询配置
  12. * @Author: jeecg-boot
  13. * @Date: 2020-11-13
  14. * @Version: V1.0
  15. */
  16. @Data
  17. @TableName("cs_diagram_comb_query_config")
  18. @Accessors(chain = true)
  19. @EqualsAndHashCode(callSuper = false)
  20. @ApiModel(value="cs_diagram_comb_query_config组合报表查询配置", description="组合报表查询配置")
  21. public class DiagramCombinationQueryConfig extends JeecgEntity {
  22. private static final long serialVersionUID = 6866692573738306236L;
  23. /**所属部门*/
  24. @ApiModelProperty(value = "所属部门")
  25. private java.lang.String sysOrgCode;
  26. /**字段名*/
  27. @Excel(name = "字段名", width = 15)
  28. @ApiModelProperty(value = "字段名")
  29. private java.lang.String field;
  30. /**字段文本*/
  31. @Excel(name = "字段文本", width = 15)
  32. @ApiModelProperty(value = "字段文本")
  33. private java.lang.String label;
  34. /**控件类型*/
  35. @Excel(name = "控件类型", width = 15)
  36. @ApiModelProperty(value = "控件类型")
  37. private java.lang.String viewType;
  38. /**查询类型*/
  39. @Excel(name = "查询类型", width = 15)
  40. @ApiModelProperty(value = "查询类型")
  41. private java.lang.String mode;
  42. /**字典Table*/
  43. @Excel(name = "字典Table", width = 15)
  44. @ApiModelProperty(value = "字典Table")
  45. private java.lang.String dictTable;
  46. /**字典Code*/
  47. @Excel(name = "字典Code", width = 15)
  48. @ApiModelProperty(value = "字典Code")
  49. private java.lang.String dictCode;
  50. /**字典Text*/
  51. @Excel(name = "字典Text", width = 15)
  52. @ApiModelProperty(value = "字典Text")
  53. private java.lang.String dictText;
  54. /**默认值*/
  55. @Excel(name = "默认值", width = 15)
  56. @ApiModelProperty(value = "默认值")
  57. private java.lang.String defValue;
  58. /**是否启用*/
  59. @Excel(name = "是否启用", width = 15)
  60. @ApiModelProperty(value = "是否启用")
  61. private java.lang.String config;
  62. /**组合报表ID*/
  63. @Excel(name = "组合报表ID", width = 15)
  64. @ApiModelProperty(value = "组合报表ID")
  65. private java.lang.String graphreportTempletId;
  66. /**排序*/
  67. @Excel(name = "排序", width = 15)
  68. @ApiModelProperty(value = "排序")
  69. private int orderNum;
  70. }