// 删除
 @RequestMapping("/delUserstatue")
 @ResponseBody
 public Object delLab(Long id) {
   Map map = new HashMap();
   // 要先判断此用户身份信息是否已经被使用,如果被使用,则不允许删除?
   t_userstatueinfoService.del(id);
   map.put("state", "1");
   return map;
 }