KKSU
2025-01-17 00a4e3cab6b4d038b2b5fbb45d816b57481bbe0f
src/main/java/cc/mrbird/febs/mall/controller/ApiMallAddressInfoController.java
@@ -17,7 +17,6 @@
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.util.List;
/**
 * @author wzy
@@ -85,4 +84,10 @@
        return mallAddressInfoService.identifyAddress(identifyAddressDto);
    }
    @ApiOperation(value = "根据id获取下一级地址", notes = "根据id获取下一级地址")
    @PostMapping(value = "/getProvince/{id}")
    public FebsResponse getProvince(@PathVariable("id") Long id) {
        return mallAddressInfoService.getProvince(id);
    }
}