---修复关联关系一对多bug

This commit is contained in:
2026-01-20 17:38:09 +08:00
parent 221679927d
commit c96a0f3023
17 changed files with 162 additions and 112 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);
}