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.
34 lines
904 B
34 lines
904 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_RETRY:P_Base_House
|
|
{
|
|
public P_MES_INTERFACE_RETRY() { }
|
|
|
|
public IList<MES_INTERFACE_RETRY> GetList()
|
|
{
|
|
return ExecuteQueryForList<MES_INTERFACE_RETRY>("MES_INTERFACE_RETRY_SELECT", null);
|
|
}
|
|
|
|
public int Add(MES_INTERFACE_RETRY mes_interface_retry)
|
|
{
|
|
return ExecuteInsert("MES_INTERFACE_RETRY_INSERT", mes_interface_retry);
|
|
}
|
|
|
|
public int Update(MES_INTERFACE_RETRY mes_interface_retry)
|
|
{
|
|
return ExecuteUpdate("MES_INTERFACE_RETRY_UPDATE", mes_interface_retry);
|
|
}
|
|
|
|
public int Delete(System.Int32 ID)
|
|
{
|
|
return ExecuteDelete("MES_INTERFACE_RETRY_DELETE", ID);
|
|
}
|
|
|
|
}
|
|
}
|