Commit c38543aa by wangli

新增sid

1 parent be3b0d0b
...@@ -9,10 +9,12 @@ public class SegmentInsertion { ...@@ -9,10 +9,12 @@ public class SegmentInsertion {
@Data @Data
public static class Segment { public static class Segment {
private String sid;
private int start; private int start;
private int end; private int end;
public Segment(int start, int end) { public Segment(String sid, int start, int end) {
this.sid = sid;
this.start = start; this.start = start;
this.end = end; this.end = end;
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!