示例#1
0
 public string GetNextPartCode()
 {
     if (this.Nodes.Count() == 0)
     {
         return(this.Code + "00");
     }
     return(QcCode.GetNextPartNumber(this, Nodes, 3));
 }
示例#2
0
 public string GetNextPartCode()
 {
     return(QcCode.GetNextPartNumber(this, GetCheckRule(Parent), 7));
 }
示例#3
0
 public string GetNextPartCode()
 {
     return(QcCode.GetNextPartNumber(this,
                                     Nodes
                                     , 7));
 }
示例#4
0
 public string GetNextPrjCode()
 {
     return(QcCode.GetNextPartNumber(this, PrjNodes, 5));
 }