mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 12:52:07 +08:00
webcad拆单新增部件房名、柜名
This commit is contained in:
+5
-3
@@ -2356,6 +2356,7 @@ public class WebCadOrderImportFactory {
|
|||||||
deleted,
|
deleted,
|
||||||
level,
|
level,
|
||||||
extra_process_status,
|
extra_process_status,
|
||||||
|
body_id,
|
||||||
body_name,
|
body_name,
|
||||||
room_name
|
room_name
|
||||||
) VALUES (
|
) VALUES (
|
||||||
@@ -2364,7 +2365,7 @@ public class WebCadOrderImportFactory {
|
|||||||
?,?,?,?,
|
?,?,?,?,
|
||||||
?,?,?,
|
?,?,?,
|
||||||
?,?,?,
|
?,?,?,
|
||||||
?,?
|
?,?,?
|
||||||
)
|
)
|
||||||
""";
|
""";
|
||||||
jdbcTemplate.batchUpdate(sql, new BatchPreparedStatementSetter() {
|
jdbcTemplate.batchUpdate(sql, new BatchPreparedStatementSetter() {
|
||||||
@@ -2409,8 +2410,9 @@ public class WebCadOrderImportFactory {
|
|||||||
} else {
|
} else {
|
||||||
ps.setNull(20, Types.INTEGER);
|
ps.setNull(20, Types.INTEGER);
|
||||||
}
|
}
|
||||||
ps.setString(21, item.getBodyName());
|
ps.setLong(21, item.getBodyId());
|
||||||
ps.setString(22, item.getRoomName());
|
ps.setString(22, item.getBodyName());
|
||||||
|
ps.setString(23, item.getRoomName());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user