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
553 B
C#

using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IDefectCodeService : IBaseService<SysDefect>
{
public Hashtable GetDefectCodeWhere(Pager pager);
public bool UpdateById(SysDefect param);
public bool AddDefect(SysDefect htParams);
public Hashtable GetDefectById(int defect_id);
public bool DeleteDefectById(int defect_id);
public int EnableData(String ids);
public int DisableData(String ids);
}
}