大连融科 WMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
747 B

using SiaSun.LMS.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SiaSun.LMS.Persistence
{
public class P_MES_INTERFACE_LOG : P_Base_House
{
public P_MES_INTERFACE_LOG() { }
public IList<MES_INTERFACE_LOG> GetList()
{
return ExecuteQueryForList<MES_INTERFACE_LOG>("MES_INTERFACE_LOG_SELECT", null);
}
public int Add(MES_INTERFACE_LOG mes_interface_LOG)
{
return ExecuteInsert("MES_INTERFACE_LOG_INSERT", mes_interface_LOG);
}
public int Update(MES_INTERFACE_LOG mes_interface_LOG)
{
return ExecuteUpdate("MES_INTERFACE_LOG_UPDATE", mes_interface_LOG);
}
}
}