Example #1
0
 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;
 }
Example #2
0
 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;
 }
Example #3
0
 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;
 }
Example #4
0
 public TimeSegType type; //时间段种类
 public TimeSegment(float length, TimeSegType type)
 {
     this.length = length;
     this.type   = type;
 }