Commit aecfc1825088e590263885e20096619573b18a8e
1 parent
c21299b1
update...
Showing
1 changed file
with
3 additions
and
3 deletions
src/main/java/com/bsth/data/car_out_info/CarOutInfoHandler.java
| ... | ... | @@ -101,10 +101,10 @@ public class CarOutInfoHandler implements CommandLineRunner, CarOutInfo { |
| 101 | 101 | ps.setString(1, sch.getScheduleDateStr()); |
| 102 | 102 | ps.setString(2, sch.getXlBm()); |
| 103 | 103 | ps.setString(3, sch.getXlName()); |
| 104 | - ps.setString(4, sch.getLpName()); | |
| 104 | + ps.setString(4, /*sch.getLpName()*/"0"); | |
| 105 | 105 | ps.setInt(5, sch.getFcno()==null?-1:sch.getFcno()); |
| 106 | - ps.setString(6, sch.getDfsj()); | |
| 107 | - ps.setString(7, sch.getClZbh()); | |
| 106 | + ps.setString(6, sch.getDfsj().replace(":", "")); | |
| 107 | + ps.setString(7, sch.getClZbh().replace("-", "")); | |
| 108 | 108 | ps.setString(8, BasicData.nbbmCompanyPlateMap.get(sch.getClZbh())); |
| 109 | 109 | ps.setString(9, bcTypeMap.containsKey(sch.getBcType()) ? bcTypeMap.get(sch.getBcType()) : sch.getBcType()); |
| 110 | 110 | ps.setString(10, sch.getZdzName()); | ... | ... |