Exemplo n.º 1
0
        public IActionResult Arrive_Get(string flow)
        {
            avBll.U_GetArrive(mu.UserID, flow);
            string url = string.IsNullOrEmpty(RequestEx["r_hid"]) ? "GetArrive" : RequestEx["r_hid"];

            return(WriteOK("优惠券领取成功", url));
        }
Exemplo n.º 2
0
        public void Arrive_Get(string flow)
        {
            avBll.U_GetArrive(mu.UserID, flow);
            string url = string.IsNullOrEmpty(Request["r_hid"]) ? "GetArrive" : Request["r_hid"];

            function.WriteSuccessMsg("优惠券领取成功", url);
        }
Exemplo n.º 3
0
        public int Arrive_Get(string ids)
        {
            int avid = avBll.U_GetArrive(mu.UserID, ids);

            if (avid > 0)
            {
                return(Success);
            }
            return(Failed);
        }