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.

24 lines
765 B
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
namespace Estsh.Core.Repository.IRepositories
{
public interface IShiftDefineRepository : IBaseRepository<SysShift>
{
#region 成员方法
public List<SysShift> GetList(string strWhere, string filedOrder);
public Hashtable GetListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public List<KeyValueResult> GetSelect();
public int Insert(SysShift htParams);
public int Update(SysShift htParams);
public int Delete(String shift_id);
public int EnableData(String ids);
public int DisableData(String ids);
#endregion 成员方法
}
}