Commit eccd0be6 authored by gaozhentao's avatar gaozhentao

修改线条颜色

parent 85f55ce2
package com.yingxin.prms.dto;
public class AuthCount {
private String mode;
private String ip;
private long count;
public AuthCount(String mode, String ip, long count) {
this.mode = mode;
this.ip = ip;
this.count = count;
}
public String getMode() {
return mode;
}
public void setMode(String mode) {
this.mode = mode;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public long getCount() {
return count;
}
public void setCount(long count) {
this.count = count;
}
}
package com.yingxin.prms.dto;
public class Count {
private long count;
public Count() {
}
public Count(long count) {
this.count = count;
}
public long getCount() {
return count;
}
public void setCount(long count) {
this.count = count;
}
}
package com.yingxin.prms.dto;
public class DailyCount {
private String date;
private long count;
public DailyCount(String date, long count) {
this.date = date;
this.count = count;
}
@Override
public String toString() {
return "DailyCount{" +
"date='" + date + '\'' +
", count=" + count +
'}';
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public long getCount() {
return count;
}
public void setCount(long count) {
this.count = count;
}
}
...@@ -423,6 +423,7 @@ public class Manager { ...@@ -423,6 +423,7 @@ public class Manager {
lineDto.setTo(line.getClusterNameRight()); lineDto.setTo(line.getClusterNameRight());
lineDto.setFromSpot(line.getCoordinateLeft()); lineDto.setFromSpot(line.getCoordinateLeft());
lineDto.setToSpot(line.getCoordinateRight()); lineDto.setToSpot(line.getCoordinateRight());
lineDto.setColor("#008000");
lineDtos.add(lineDto); lineDtos.add(lineDto);
} }
result.put("class", "GraphLinksModel"); result.put("class", "GraphLinksModel");
......
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