返回数据 尝试

This commit is contained in:
2025-12-29 14:51:26 +08:00
parent dc3be2f1d8
commit 057f851dcf

View File

@@ -347,14 +347,14 @@ public class OrderInfo implements Serializable {
}
public JSONArray getPrintStatus() {
if (StrUtil.isBlank(printStatus)) {
return new JSONArray();
}
try {
return JSONArray.parseArray(printStatus.trim());
} catch (Exception e) {
return new JSONArray();
}
}
// public JSONArray getPrintStatus() {
// if (StrUtil.isBlank(printStatus)) {
// return new JSONArray();
// }
// try {
// return JSONArray.parseArray(printStatus.trim());
// } catch (Exception e) {
// return new JSONArray();
// }
// }
}