コード例 #1
0
ファイル: DistributeBP.cs プロジェクト: GSIL-Monitor/BTP
        /// <summary>
        /// 获取分销商申请设置
        /// </summary>
        /// <returns></returns>
        public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO ModifyDistributRuleFull(
            Jinher.AMP.BTP.Deploy.CustomDTO.DistributRuleFullDTO distributRuleFullDto)
        {
            base.Do();
            Stopwatch timer = new Stopwatch();

            timer.Start();
            var result = this.ModifyDistributRuleFullExt(distributRuleFullDto);

            timer.Stop();
            Jinher.JAP.Common.Loging.LogHelper.Debug(string.Format("DistributeBP.ModifyDistributRuleFull:耗时:{0}。",
                                                                   timer.ElapsedMilliseconds));
            return(result);
        }
コード例 #2
0
 /// <summary>
 /// 添加或者编辑分销商设置
 /// </summary>
 /// <returns></returns>
 public Jinher.AMP.BTP.Deploy.CustomDTO.ResultDTO ModifyDistributRuleFull(
     Jinher.AMP.BTP.Deploy.CustomDTO.DistributRuleFullDTO distributRuleFullDto)
 {
     base.Do();
     return(this.Command.ModifyDistributRuleFull(distributRuleFullDto));
 }