public int UptZtBargain(int cid)
 {
     try
     {
         logger.Debug($"用户对砍价列表进行修改状态,修改的ID为:{cid}");
         int i = _bargainRepository.UptZt(cid);
         return(i);
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
        public int UptZtBargain(int bid)
        {
            int i = _bargainRepository.UptZt(bid);

            return(i);
        }