using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 商家收货方式-数据库操作接口 /// public interface IEC_AcceptWayBySellerDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据TargetId获得收货地址 /// /// 来源id /// Model.EC_AcceptWayBySeller SelectModelByTargetId(Guid TargetId); } }