feat:新增出入库单查询页面及配置文件修改

This commit is contained in:
zhouz
2026-07-22 08:54:03 +08:00
parent 6380b93774
commit 44dac0a552
56 changed files with 2986 additions and 71 deletions

View File

@@ -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 {
}

View File

@@ -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 {
}