public JsonResult Post(NPaiaVipUser _t)
 {
     if (WMFactory.NPaiaVipUser.Insert(_t))
         return Json(ResultMsg.Success("新增成功!"));
     else
         return Json(ResultMsg.Failure("新增失败,请您重试!"));
 }
 public JsonResult Delete(NPaiaVipUser _t)
 {
     if (WMFactory.NPaiaVipUser.Delete(s => s.Id == _t.Id ))
         return Json(ResultMsg.Success("删除成功!"));
     else
         return Json(ResultMsg.Failure("删除失败,请您重试!"));
 }
 public JsonResult Put(NPaiaVipUser _t)
 {
     INPaiaVipUserService service = WMFactory.NPaiaVipUser;
     NPaiaVipUser entity = service.GetById(_t.Id.ToString());
     entity = AutoMapper<NPaiaVipUser, NPaiaVipUser>.Convert(_t, entity);
     if (service.Update(entity))
         return Json(ResultMsg.Success("更新成功!"));
     else
         return Json(ResultMsg.Failure("更新失败,请您重试!"));
 }