using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { public interface IOA_ShiJuanBiaoQianDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_ShiJuanBiaoQian GetModelByKeyid(Guid? keyid); /// /// 根据formid获得信息 /// /// 编号 /// IEnumerable GetModelByformid(Guid formid); /// /// 根据ids获得信息 /// /// ids /// IEnumerable GetModelByids(string ids); /// /// 根据编号批量删除数据 /// /// 当前操作人 /// 编号集合 /// bool DeleteDataByIds(string currentOperator, params int[] ids); } }