解决移动文件出现空格
This commit is contained in:
parent
c96a2a681c
commit
27b8b76cea
Binary file not shown.
@ -10706,13 +10706,13 @@ public String deleteReply(String replyid, String messageid) {
|
||||
for (PALRepositoryModel palRepositoryModel : sourceList) {
|
||||
String id = palRepositoryModel.getId();
|
||||
if (L1 != null) {
|
||||
DBSql.update(String.format(updateSql, L1, id, "Process_Architecture_L1"));
|
||||
DBSql.update(String.format(updateSql, L1.trim(), id, "Process_Architecture_L1"));
|
||||
}
|
||||
if (L2 != null) {
|
||||
DBSql.update(String.format(updateSql, L2, id, "Process_Architecture_L2"));
|
||||
DBSql.update(String.format(updateSql, L2.trim(), id, "Process_Architecture_L2"));
|
||||
}
|
||||
if (L3 != null) {
|
||||
DBSql.update(String.format(updateSql, L3, id, "Process_Architecture_L3"));
|
||||
DBSql.update(String.format(updateSql, L3.trim(), id, "Process_Architecture_L3"));
|
||||
}
|
||||
/**
|
||||
* 查看改流程是否关联流程绩效
|
||||
|
||||
Loading…
Reference in New Issue
Block a user