Commit 2a3bc86bdc9a9d9574c45546f4836090f7ddc04f

Authored by litao@lymsh.com
1 parent dbf71e0f80

逗号改括号

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ 2a3bc86
... ... @@ -1478,7 +1478,7 @@
1478 1478 if (antExcAddOther.getFmType() != null) {
1479 1479 String fmType = CZFmTypeEnums.getTitle(antExcAddOther.getFmType());
1480 1480 if (antExcAddOther.getFmTypeRemark() != null) {
1481   - mapData.put("fmType", fmType + "," + antExcAddOther.getFmTypeRemark());
  1481 + mapData.put("fmType", fmType + "(" + antExcAddOther.getFmTypeRemark() + ")");
1482 1482 } else {
1483 1483 mapData.put("fmType", fmType);
1484 1484 }
... ... @@ -1488,7 +1488,7 @@
1488 1488 if (antExcAddOther.getFitness() != null) {
1489 1489 String fitness = FitnessEnums.getTitle(Integer.parseInt(antExcAddOther.getFitness().toString()));
1490 1490 if (antExcAddOther.getFitnessRemark() != null) {
1491   - mapData.put("fitness", fitness + "," + antExcAddOther.getFitnessRemark());
  1491 + mapData.put("fitness", fitness + "(," + antExcAddOther.getFitnessRemark() + ")");
1492 1492 } else {
1493 1493 mapData.put("fitness", fitness);
1494 1494 }