Example #1
0
        public IActionResult SeckillDel(int id)//秒杀的删除
        {
            int h = _bll.SeckillDel(id);

            return(Ok(new { msg = h > 0 ? "删除成功" : "删除失败", state = h > 0 ? true : false }));
        }