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

22 lines
721 B
C#

using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
namespace Estsh.Core.Repository.IRepositories
{
public interface IPackSpecDefineRepository : IBaseRepository<SysPackSpec>
{
#region 成员方法
public List<SysPackSpec> getList(string strWhere, string filedOrder);
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public int savePackSpec(SysPackSpec htParams);
public int updatePackSpec(SysPackSpec htParams);
public int deletePackSpec(String spec_id);
public int EnableData(String ids);
public int DisableData(String ids);
#endregion 成员方法
}
}