public bool Update(RegionAreaEntity entity)
 {
     try
     {
         Update("RegionAreaMap.Update", entity);
         return(true);
     }
     catch
     {
         return(false);
     }
 }
 public HujingModel.RegionAreaEntity Load(string code)
 {
     try
     {
         RegionAreaEntity orgInfo = QueryForObject <RegionAreaEntity>("RegionAreaMap.Load", code);
         return(orgInfo);
     }
     catch (Exception)
     {
         throw;
     }
 }