refactor(mmpac): 优化出厂编码的赋值

This commit is contained in:
mzr 2025-09-16 13:56:53 +08:00
parent 91a3f986f1
commit 4d1cf632e7
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ public class SyncEpicMesUtil {
if (jsonArray.isEmpty()) {
return null;
}
obj.put("releaseNo", jsonArray.toString());
obj.put("releaseNo", jsonArray);
return obj;
}