Commit 29540bcf authored by linruibiao's avatar linruibiao

整改接口

parent a731a885
package com.syc.slm.slmbi.vo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* slm-bi
* 仪表板分组tree vo
*
* @author : lin
* @date : 2021-03-30 09:36
**/
@Data
@ApiModel(value = "仪表板分组tree vo")
@EqualsAndHashCode(callSuper=false)
public class PanelGroupVo {
@ApiModelProperty(value = "分组或者仪表板主键")
private Integer id;
@ApiModelProperty(value = "父级id")
private String parentId;
@ApiModelProperty(value = "分组名称")
private String groupName;
@ApiModelProperty(value = "仪表板名称")
private String panelName;
@ApiModelProperty(value = "1 分组,2 仪表板")
private Integer type;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment