|
@@ -294,7 +294,7 @@ public class ExcelTabServiceImpl extends BaseServiceImpl<ExcelTabMapper, ExcelTa
|
|
|
Integer tr_1 = Integer.parseInt(ziduan[j + 1].split("__")[1].split("_")[0]);
|
|
|
Integer td_1 = Integer.parseInt(ziduan[j + 1].split("__")[1].split("_")[1]);
|
|
|
|
|
|
- if (tr > tr_1 && td == td_1) { //纵向排序
|
|
|
+ if (tr > tr_1 && td.equals(td_1)) { //纵向排序
|
|
|
temp = ziduan[j];
|
|
|
ziduan[j] = ziduan[j + 1];
|
|
|
ziduan[j + 1] = temp;
|