示例#1
0
 /// <summary>
 /// 是否存在该记录
 /// </summary>
 public bool ExistsCode(string code)
 {
     if (!string.IsNullOrEmpty(code))
     {
         return(dal.ExistsCode(code));
     }
     else
     {
         return(false);
     }
 }