C# 根據資料庫 自動生成最大編號,應用於各編號的生成
阿新 • • 發佈:2019-01-08
閒話不說,依舊這麼直接,直接上程式碼:
本人技術討論QQ群:BUG製作者協會:121942786/// <summary> /// 自動生成6位編號,應用於各基本資訊中的編號生成 /// </summary> /// <param name="TableName">表名</param> /// <param name="FieldName">欄位名</param> /// <returns></returns> public string AutoCreateID(string TableName,string FieldName) { string Str = "select max(" + FieldName + ") id from " + TableName;//000005 string maxID = MisLesson.DAL.DbHelperSQL.GetSingle(Str).ToString();// if (maxID == "")//000005 { maxID = "000001"; } else { maxID = (Convert.ToInt32(maxID) + 1).ToString("000000");// } return maxID; } /// <summary> /// 自動生成14位編號,應用於各業務單據中的編號生成 /// </summary> /// <param name="flag">單據型別標識</param> /// <param name="TableName">資料表名</param> /// <param name="FieldName">欄位名</param> /// <returns>返回值:最大編號</returns> public string AutoCreateID(string flag, string TableName, string FieldName) { string sDate = GetServerSysDate("yyyyMMdd");// string Str = "select max(" + FieldName + ") id from " + TableName;// object obj = MisLesson.DAL.DbHelperSQL.GetSingle(Str); string maxID = ""; if (obj != null) maxID =MisLesson.DAL.DbHelperSQL.GetSingle(Str).ToString();// string Result = ""; if (maxID == "") { Result = flag + sDate + "0001";// } else// { string sFirstEight = maxID.Substring(2, 8);// string sLastFour = maxID.Substring(10, 4);// if (sDate == sFirstEight) { string sNewLastFour = (Convert.ToInt32(sLastFour) + 1).ToString("0000");// Result = flag + sDate + sNewLastFour;// } else { Result = flag + sDate + "0001";// } } return Result; }