基础信息-物料管理-新增页面 添加新下拉框数据

This commit is contained in:
zhaoqing
2026-05-09 10:50:25 +08:00
parent b456fb45f7
commit f5b4b6acd1
5 changed files with 46 additions and 0 deletions
@@ -6,6 +6,7 @@ import java.util.List;
import java.util.stream.Collectors;
import com.mhd.system.api.OmsServiceFeign;
import com.mhd.system.api.domain.ErpCountryDTO;
import com.mhd.system.api.domain.ErpEnterpriseUnitDTO;
import com.mhd.system.api.domain.MaterialBarCodeFeign;
import io.swagger.annotations.ApiOperation;
@@ -120,4 +121,9 @@ public class MaterialBaseInfoApi extends BaseController{
return omsServiceFeign.getUnitList(erpEnterpriseUnitDTO);
}
@ApiOperation("获取企业国别列表-原产国下拉框用")
@GetMapping("/getCountryList")
public AjaxResult getCountryList(ErpCountryDTO erpCountryDTO) {
return omsServiceFeign.getCountryList(erpCountryDTO);
}
}