Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
2026-01-20 18:12:44 +08:00
24 changed files with 317 additions and 159 deletions

View File

@ -7,6 +7,7 @@ import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import com.xjrsoft.common.constant.GlobalConstant;
import com.xjrsoft.module.supplier.vo.LngSupplierVo;
/**
* @author: ksy
@ -19,6 +20,6 @@ public interface ISupplierClient {
Map<String,String> getAllTranData();
@GetMapping("/getTranById")
String getTranById(@RequestParam("id")String id);
LngSupplierVo getTranById(@RequestParam("id")String id);
}