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,6 +1,7 @@
using Epost.DAL;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@ -14,5 +15,10 @@ namespace Epost.BLL
{
return dal.insertAgvLogInfo(reqCode,reqTime,robotCode,beginDate,warnContent,taskCode);
}
public DataTable getAgvLogList(string strwhere)
{
return dal.getAgvLogList(strwhere);
}
}
}