This commit is contained in:
jl
2024-12-27 16:54:02 +08:00
parent 78b193a52a
commit 85be80759a
5 changed files with 39 additions and 16 deletions

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@ -20,5 +21,11 @@ namespace Epost.DAL
return true;
return false;
}
public DataTable getAgvLogList(string strwhere)
{
string sql = string.Format("select * from agvLogInfo where 1=1 "+strwhere);
return db.GetsqlForDT(sql);
}
}
}