25 lines
658 B
C#
25 lines
658 B
C#
using Epost.DAL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
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);
|
|
}
|
|
|
|
public DataTable getAgvLogList(string strwhere)
|
|
{
|
|
return dal.getAgvLogList(strwhere);
|
|
}
|
|
}
|
|
}
|