refactor(chart): 优化图表模板和记录功能
This commit is contained in:
@@ -6,9 +6,21 @@ public class IdName {
|
||||
private String name;
|
||||
private String extra;
|
||||
|
||||
public IdName(String id, String name) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public IdName(String id, String name, String extra) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.extra = extra;
|
||||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// setter\getter
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/// ////////////////////////////////////////////////////////////////////////
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
|
||||
Reference in New Issue
Block a user