规范数据库,添加必要约束,优化通道批量导入功能

This commit is contained in:
648540858
2022-02-24 16:55:06 +08:00
parent 2157bb0270
commit a42dda2bd3
13 changed files with 205 additions and 133 deletions

View File

@@ -8,6 +8,11 @@ import java.util.List;
public class StreamPushItem extends GbStream implements Comparable<StreamPushItem>{
/**
* id
*/
private Integer id;
/**
* 应用名
*/
@@ -111,6 +116,13 @@ public class StreamPushItem extends GbStream implements Comparable<StreamPushIte
}
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getApp() {
return app;