You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

45 lines
784 B

package com.fr.plugin.bi.fusion.web.handler.bean;
/**
* @Author ezreal
* @Date 2023/6/1 13:57
* @Version 10.0
*/
public class ReportItemBean {
public ReportItemBean() {
}
private String id;
private String name;
private String type;
public ReportItemBean(String id, String name, String type) {
this.id = id;
this.name = name;
this.type = type;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}