zhongrj
2023-12-28 14b436a7690bb206ef2a5ab3cc385ac337c64da4
bug 修复
2 files modified
4 ■■■■ changed files
src/main/java/org/springblade/modules/place/entity/PlaceExtEntity.java 2 ●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/place/service/impl/PlaceServiceImpl.java 2 ●●● patch | view | raw | blame | history
src/main/java/org/springblade/modules/place/entity/PlaceExtEntity.java
@@ -70,7 +70,7 @@
     * 场所位置
     */
    @ApiModelProperty(value = "场所位置")
    private String localtion;
    private String location;
    /**
     * 法人信息
     */
src/main/java/org/springblade/modules/place/service/impl/PlaceServiceImpl.java
@@ -388,7 +388,7 @@
        PlaceExtEntity one = placeExtService.getOne(wrapper);
        if (null == one) {
            placeExtEntity.setPlaceId(placeVO.getId());
            placeExtEntity.setLocaltion(placeVO.getLocation());
            placeExtEntity.setLocation(placeVO.getLocation());
            //新增
            placeExtService.savePlaceExt(placeExtEntity);
        }