2021-02-21
Path parameter "customercode" must have the corresponding {customercode} segment in the "/<customercode>/<fincorgid>/<prodlineid>" path

将paths下的
paths:
/<customercode>/<fincorgid>/<prodlineid>:
改为
paths:
/{customercode}/{fincorgid}/{prodlineid}:
即可
参考:https://stackoverflow.com/a/62754174