Files
T-DAS/Epost.BLL/AgvLogInfoBLL.cs

25 lines
658 B
C#
Raw Normal View History

2024-12-25 10:15:41 +08:00
using Epost.DAL;
using System;
using System.Collections.Generic;
2024-12-27 16:54:02 +08:00
using System.Data;
2024-12-25 10:15:41 +08:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.BLL
{
public class AgvLogInfoBLL
{
AgvLogInfoDAL dal = new AgvLogInfoDAL();
public bool insertAgvLogInfo(string reqCode, string reqTime, string robotCode, string beginDate, string warnContent, string taskCode)
{
return dal.insertAgvLogInfo(reqCode,reqTime,robotCode,beginDate,warnContent,taskCode);
}
2024-12-27 16:54:02 +08:00
public DataTable getAgvLogList(string strwhere)
{
return dal.getAgvLogList(strwhere);
}
2024-12-25 10:15:41 +08:00
}
}