许鹏程
2025-02-11 8b183923a89ee732403104b4fc839365ff53a824
commmit
已修改1个文件
13 ■■■■■ 文件已修改
src/main/java/com/product/mobile/core/service/FaceMobileService.java 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/product/mobile/core/service/FaceMobileService.java
@@ -473,6 +473,19 @@
                        faceFieldEntity.setAllowDelete(setEntity.getBoolean("property_value"));
                    } else if ("control_sequence".equals(propertyName)) {
                        faceFieldEntity.putOtherParam("controlSequence", setEntity.getInteger("property_value"));
                    } else if ("__config__".equals(propertyName)) {
                        String __config__ = setEntity.getUUID();
                        List<FieldSetEntity> fieldSetEntities2 = parentMap.get(__config__);
                        if (!CollectionUtil.isEmpty(fieldSetEntities2)) {
                            for (FieldSetEntity fieldSetEntity4 : fieldSetEntities2) {
                                if ("label".equals(fieldSetEntity4.getString("property_name"))) {
                                    faceFieldEntity.setName(fieldSetEntity4.getString("property_value"));
                                } else if ("required".equals(fieldSetEntity4.getString("property_name"))) {
                                    faceFieldEntity.setRequired(fieldSetEntity4.getBoolean("property_value") ? "1" : "0");
                                }
                            }
                        }
                    }
                }
                List<FaceFieldEntity> subFieldList = faceFieldEntity.getSubField();