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.
18 lines
638 B
C#
18 lines
638 B
C#
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IPackSpecDefineService : IBaseService<SysPackSpec>
|
|
{
|
|
public Hashtable getPackSpecListByPage(String spec_name, Pager pager, String direction, String sort, String enabled);
|
|
public int savePackSpec(SysPackSpec htParams);
|
|
public int updatePackSpec(SysPackSpec htParams);
|
|
public Hashtable getPackSpecDetail(String spec_id);
|
|
public int deletePackSpec(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
}
|
|
}
|