Example #1
0
 /// <summary>
 /// 确认成团(必传参数DiyGoupId)
 /// </summary>
 /// <param name="search"></param>
 /// <returns></returns>
 public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO Refund(Jinher.AMP.BTP.Deploy.CustomDTO.DiyGroupSearchDTO search)
 {
     base.Do();
     return(this.RefundExt(search));
 }
Example #2
0
 /// <summary>
 /// 获取拼团信息(必传参数AppId、PageIndex、PageSize、State,可选参数ComNameSub)
 /// </summary>
 /// <param name="search"></param>
 /// <returns></returns>
 public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO <Jinher.AMP.BTP.Deploy.CustomDTO.DiyGroupManageDTO> GetDiyGroups(Jinher.AMP.BTP.Deploy.CustomDTO.DiyGroupSearchDTO search)
 {
     base.Do();
     return(this.GetDiyGroupsExt(search));
 }
Example #3
0
 /// <summary>
 /// 确认成团(必传参数DiyGoupId)
 /// </summary>
 /// <param name="search"></param>
 /// <returns></returns>
 public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO ConfirmDiyGroup(Jinher.AMP.BTP.Deploy.CustomDTO.DiyGroupSearchDTO search)
 {
     base.Do();
     return(this.ConfirmDiyGroupExt(search));
 }
Example #4
0
        /// <summary>
        /// 我的拼团订单列表
        /// </summary>
        /// <param name="search"></param>
        /// <returns></returns>
        public List <Jinher.AMP.BTP.Deploy.CustomDTO.DiyGroupOrderListDTO> GetDiyGroupList(Jinher.AMP.BTP.Deploy.CustomDTO.DiyGroupSearchDTO search)
        {
            //定义返回值
            List <Jinher.AMP.BTP.Deploy.CustomDTO.DiyGroupOrderListDTO> result;

            try
            {
                //调用代理方法
                result = base.Channel.GetDiyGroupList(search);
            }
            catch
            {
                //抛异常
                throw;
            }
            finally
            {
                //关链接
                ChannelClose();
            }            //返回结果
            return(result);
        }