D:/workspace/chenjingjing/git/gx_tieta/gx_tieta/.gitignore
2019-01-18 2fe250ece8de95b3f70172fe5b45793ab6a3084a
gx_tieta/src/com/fgkj/dao/impl/BattMap_informationImpl.java
@@ -51,7 +51,14 @@
         binformation.getAddress(),binformation.getLongitude(),binformation.getLatitude()});
      return bl;
   }
    //9.1录入机房信息(手机端)
   public boolean replace(Object obj) {
      BattMap_information binformation=(BattMap_information) obj;
      String sql="replace into web_site.tb_battmap_information(StationId,StationName,address,longitude,latitude) values(?,?,?,?,?)";
      Boolean bl=DAOHelper.executeUpdate(DBUtil.getConn(), sql, new Object[]{binformation.getStationId(),binformation.getStationName(),
         binformation.getAddress(),binformation.getLongitude(),binformation.getLatitude()});
      return bl;
   }
   public boolean update(Object obj) {
      BattMap_information binformation=(BattMap_information) obj;
      String sql="update web_site.tb_battmap_information set StationId=?,StationName=?,address=?,longitude=?,latitude=?,information=? where num=?";