This commit is contained in:
jl
2024-12-05 14:36:37 +08:00
parent 261fde99ce
commit 4e4c0dbb59
5 changed files with 69 additions and 16 deletions

View File

@ -53,14 +53,16 @@ namespace Epost.BLL
#endregion
#region
public string GetLocation(string strwhere)
public string GetLocation(string strwhere,out string type1)
{
DataTable dt= dal.GetLocation(strwhere);
if (dt != null && dt.Rows.Count > 0)
{
type1 = dt.Rows[0]["type"].ToString();
return dt.Rows[0]["agvloc"].ToString();
}
else {
type1 ="";
return "";
}