/// <summary> /// 获得商家所有订单(获取电商馆下所有订单) /// </summary> /// <param name="search"></param> /// <returns></returns> public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO <Jinher.AMP.BTP.Deploy.CustomDTO.CommodityOrderListDTO> GetAllCommodityOrderByEsAppId(Jinher.AMP.BTP.Deploy.CustomDTO.CommodityOrderSearchDTO search) { base.Do(); return(this.Command.GetAllCommodityOrderByEsAppId(search)); }
public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO <Jinher.AMP.BTP.Deploy.CustomDTO.CommodityOrderListDTO> GetAllCommodityOrderByEsAppId(Jinher.AMP.BTP.Deploy.CustomDTO.CommodityOrderSearchDTO search) { //定义返回值 Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO <Jinher.AMP.BTP.Deploy.CustomDTO.CommodityOrderListDTO> result; try { //调用代理方法 result = base.Channel.GetAllCommodityOrderByEsAppId(search); } catch { //抛异常 throw; } finally { //关链接 ChannelClose(); } //返回结果 return(result); }