|
|
当前位置:首页 > > .net 三层架构 获取最大编号GetMaxId(动软代码) |
.net 三层架构 获取最大编号GetMaxId (动软代码) 后台CS: MaxId = "DIY" + bllok.GetMaxId2(); BLL: /// <summary> /// 获得最大编号 /// </summary> public string GetMaxId2() { return dal.GetMaxId2(); } DAL: /// <summary> /// 得到最大编号 /// </summary> public string GetMaxId2() { StringBuilder sb = new StringBuilder(); sb.Append("SELECT MAX(flynum) as flynum FROM OA_diy "); DataTable dt = DbHelperSQL.Query(sb.ToString()).Tables[0]; if (!dt.Rows[0]["flynum"].ToString().Equals("")) { string s = dt.Rows[0]["flynum"].ToString(); int num = Int32.Parse(s.Substring(3, s.Length - 3)) + 1; string numstring = num.ToString(); return numstring; } else { return "1"; } }
|
|