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_WorkPlan_attachmentDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_WorkPlan_attachment GetModelByKeyid(int keyid); /// /// 根据OA_WorkPlanId获得信息 /// /// 编号 /// IEnumerable GetModelByKaipiaoId(int OA_WorkPlanId); /// /// 根据OA_WorkPlanId获得信息 /// /// 编号 /// IEnumerable GetModelByKaipiaoIdandType(int OA_WorkPlanId, int AttachmentType); } }