|
@@ -1739,7 +1739,7 @@ public R<String> batchDownloadFileToZip(String ids, HttpServletResponse response
|
|
|
String sql = "";
|
|
|
String sql1 = "";
|
|
|
if (primaryKeyId != null && primaryKeyId.indexOf("*") > 0) {
|
|
|
- primaryKeyId = primaryKeyId.substring(0, primaryKeyId.length() - 1);
|
|
|
+ primaryKeyId=primaryKeyId.replaceAll("\\*","");
|
|
|
sql = "update u_trial_self_inspection_record set task_status = '未上报' where id=" + primaryKeyId;
|
|
|
sql1 = "SELECT e.* from u_entrust_info e left join u_trial_self_inspection_record t on t.entrust_id=e.id where t.id=" + primaryKeyId;
|
|
|
} else {
|