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_KaipiaoJineQuerenDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// OA_KaipiaoJineQueren GetModelByKeyid(Guid? keyid); /// /// 根据buyerid获得信息 /// /// 买家id /// IEnumerable GetModelBybuyerid(Guid buyerid); /// /// 新增 /// /// /// bool InserModeldetail(OA_KaipiaoJineQuerendetail model); } }