|
@@ -110,7 +110,7 @@ public class PublicController {
|
|
|
List<String> yp = new ArrayList<>();
|
|
|
for (String item : listCode) {
|
|
|
String[] it = item.split("-");
|
|
|
- if (it[1].equals("00")) {
|
|
|
+ if ("00".equals(it[1])) {
|
|
|
xm.add(it[0].trim());
|
|
|
} else {
|
|
|
yp.add(it[0].trim() + it[1].trim());
|