feat:新增出入库单查询页面及配置文件修改
This commit is contained in:
@@ -4,15 +4,14 @@ import cn.code.nl.framework.common.enums.RpcConstants;
|
||||
import cn.code.nl.framework.execute.biz.api.TaskCommonApi;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
|
||||
/**
|
||||
* lms通用API
|
||||
* @Author: liyongde
|
||||
* @Date: 2026/7/15 14:39
|
||||
*/
|
||||
@FeignClient(name = RpcConstants.LMS_NAME, primary = false) // TODO 芋艿:fallbackFactory =
|
||||
@RequestMapping("/lms")
|
||||
@FeignClient(name = RpcConstants.LMS_NAME, path = "/lms", primary = false) // TODO 芋艿:fallbackFactory =
|
||||
@Tag(name = "RPC 服务 - lms任务")
|
||||
public interface LmsTaskCommonApi extends TaskCommonApi {
|
||||
}
|
||||
|
||||
@@ -4,15 +4,14 @@ import cn.code.nl.framework.common.enums.RpcConstants;
|
||||
import cn.code.nl.framework.execute.biz.api.TaskCommonApi;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
|
||||
/**
|
||||
*
|
||||
* @Author: liyongde
|
||||
* @Date: 2026/7/15 14:48
|
||||
*/
|
||||
@FeignClient(name = RpcConstants.WMS_NAME, primary = false) // TODO 芋艿:fallbackFactory =
|
||||
@RequestMapping("/wms")
|
||||
@FeignClient(name = RpcConstants.WMS_NAME, path = "/wms", primary = false) // TODO 芋艿:fallbackFactory =
|
||||
@Tag(name = "RPC 服务 - wms任务")
|
||||
public interface WmsTaskCommonApi extends TaskCommonApi {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user