public TimeSeg(string btime, string etime, TimeSegType type, string planno, string paracode) { this.starttime = btime; this.endtime = etime; this.type = type; this.planno = planno; this.nodecode = paracode; }
public TimeSeg(string a, string b, TimeSegType c, string d, string e) { this.starttime = a; this.endtime = b; this.type = c; this.planno = d; this.nodecode = e; }
public SectionTimeSeg(string btime, string etime, TimeSegType type, string planno, string sectioncode, string pathcode) { this.starttime = btime; this.endtime = etime; this.type = type; this.planno = planno; this.sectioncode = sectioncode; this.pathcode = pathcode; }
public TimeSegType type; //时间段种类 public TimeSegment(float length, TimeSegType type) { this.length = length; this.type = type; }