
6 changed files with 227 additions and 9 deletions
@ -0,0 +1,62 @@ |
|||||
|
package com.yxt.supervise.dbcenter.zhj.crawl.spider; |
||||
|
|
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
public class ZhjRespDataValueRows { |
||||
|
|
||||
|
private boolean total; // false,
|
||||
|
private boolean subtotal; // false,
|
||||
|
private String summaryType; // null,
|
||||
|
private List<ZhjRespDataValueRowsCells> cells = new ArrayList<>(); // [
|
||||
|
private String groupName; // null,
|
||||
|
private String groups; // null
|
||||
|
|
||||
|
public boolean isTotal() { |
||||
|
return total; |
||||
|
} |
||||
|
|
||||
|
public void setTotal(boolean total) { |
||||
|
this.total = total; |
||||
|
} |
||||
|
|
||||
|
public boolean isSubtotal() { |
||||
|
return subtotal; |
||||
|
} |
||||
|
|
||||
|
public void setSubtotal(boolean subtotal) { |
||||
|
this.subtotal = subtotal; |
||||
|
} |
||||
|
|
||||
|
public String getSummaryType() { |
||||
|
return summaryType; |
||||
|
} |
||||
|
|
||||
|
public void setSummaryType(String summaryType) { |
||||
|
this.summaryType = summaryType; |
||||
|
} |
||||
|
|
||||
|
public List<ZhjRespDataValueRowsCells> getCells() { |
||||
|
return cells; |
||||
|
} |
||||
|
|
||||
|
public void setCells(List<ZhjRespDataValueRowsCells> cells) { |
||||
|
this.cells = cells; |
||||
|
} |
||||
|
|
||||
|
public String getGroupName() { |
||||
|
return groupName; |
||||
|
} |
||||
|
|
||||
|
public void setGroupName(String groupName) { |
||||
|
this.groupName = groupName; |
||||
|
} |
||||
|
|
||||
|
public String getGroups() { |
||||
|
return groups; |
||||
|
} |
||||
|
|
||||
|
public void setGroups(String groups) { |
||||
|
this.groups = groups; |
||||
|
} |
||||
|
} |
@ -0,0 +1,77 @@ |
|||||
|
package com.yxt.supervise.dbcenter.zhj.crawl.spider; |
||||
|
|
||||
|
public class ZhjRespDataValueRowsCells { |
||||
|
|
||||
|
private String value; // "(抖音)番茄鸡腿米线套餐",
|
||||
|
private String raw; // null,
|
||||
|
private String dataType; // "string",
|
||||
|
private String id; // null,
|
||||
|
private String parentId; // null,
|
||||
|
private String hasChildren; // null,
|
||||
|
private String ranking; // null,
|
||||
|
private ZhjRespDataValueRowsCellsProps props; // {
|
||||
|
|
||||
|
public String getValue() { |
||||
|
return value; |
||||
|
} |
||||
|
|
||||
|
public void setValue(String value) { |
||||
|
this.value = value; |
||||
|
} |
||||
|
|
||||
|
public String getRaw() { |
||||
|
return raw; |
||||
|
} |
||||
|
|
||||
|
public void setRaw(String raw) { |
||||
|
this.raw = raw; |
||||
|
} |
||||
|
|
||||
|
public String getDataType() { |
||||
|
return dataType; |
||||
|
} |
||||
|
|
||||
|
public void setDataType(String dataType) { |
||||
|
this.dataType = dataType; |
||||
|
} |
||||
|
|
||||
|
public String getId() { |
||||
|
return id; |
||||
|
} |
||||
|
|
||||
|
public void setId(String id) { |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public String getParentId() { |
||||
|
return parentId; |
||||
|
} |
||||
|
|
||||
|
public void setParentId(String parentId) { |
||||
|
this.parentId = parentId; |
||||
|
} |
||||
|
|
||||
|
public String getHasChildren() { |
||||
|
return hasChildren; |
||||
|
} |
||||
|
|
||||
|
public void setHasChildren(String hasChildren) { |
||||
|
this.hasChildren = hasChildren; |
||||
|
} |
||||
|
|
||||
|
public String getRanking() { |
||||
|
return ranking; |
||||
|
} |
||||
|
|
||||
|
public void setRanking(String ranking) { |
||||
|
this.ranking = ranking; |
||||
|
} |
||||
|
|
||||
|
public ZhjRespDataValueRowsCellsProps getProps() { |
||||
|
return props; |
||||
|
} |
||||
|
|
||||
|
public void setProps(ZhjRespDataValueRowsCellsProps props) { |
||||
|
this.props = props; |
||||
|
} |
||||
|
} |
@ -0,0 +1,40 @@ |
|||||
|
package com.yxt.supervise.dbcenter.zhj.crawl.spider; |
||||
|
|
||||
|
public class ZhjRespDataValueRowsCellsProps { |
||||
|
private String guid; // "f8e0f500-ffc6-4821-9190-5cd3b3c906e9",
|
||||
|
private String hasPermission; // null,
|
||||
|
private String dataMask; // null,
|
||||
|
private String supportDrill; // null
|
||||
|
|
||||
|
public String getGuid() { |
||||
|
return guid; |
||||
|
} |
||||
|
|
||||
|
public void setGuid(String guid) { |
||||
|
this.guid = guid; |
||||
|
} |
||||
|
|
||||
|
public String getHasPermission() { |
||||
|
return hasPermission; |
||||
|
} |
||||
|
|
||||
|
public void setHasPermission(String hasPermission) { |
||||
|
this.hasPermission = hasPermission; |
||||
|
} |
||||
|
|
||||
|
public String getDataMask() { |
||||
|
return dataMask; |
||||
|
} |
||||
|
|
||||
|
public void setDataMask(String dataMask) { |
||||
|
this.dataMask = dataMask; |
||||
|
} |
||||
|
|
||||
|
public String getSupportDrill() { |
||||
|
return supportDrill; |
||||
|
} |
||||
|
|
||||
|
public void setSupportDrill(String supportDrill) { |
||||
|
this.supportDrill = supportDrill; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue