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.
20 lines
659 B
C#
20 lines
659 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IShiftDefineService : IBaseService<SysShift>
|
|
{
|
|
public Hashtable GetListByPage(String shift_name, Pager pager, String direction, String sort);
|
|
public List<KeyValueResult> GetSelect();
|
|
public List<SysShift> GetDetail(String shift_id);
|
|
public int Insert(SysShift htParams);
|
|
public int Update(SysShift htParams);
|
|
public int Delete(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
}
|
|
}
|