Skip to content

Commit

Permalink
供应商信息管理,新增供应商信息,主要包括:产品型号,交付时间,产品价格,可交付数量,交易对手方,预付款比例等
Browse files Browse the repository at this point in the history
  • Loading branch information
charging-kuafuai committed Nov 5, 2023
1 parent a1c80ed commit f9a4188
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ public ResultModel addSupplierProduct(SupplierProduct supplierProduct) {

@Override
public ResultPageModel<SupplierProduct> getSupplierProductList() {
ResultPageModel<SupplierProduct> resultPageModel = ResultPageModel.of(supplierProductMapper.getSupplierProductList())
ResultPageModel<SupplierProduct> resultPageModel =
ResultPageModel.of(supplierProductMapper.getSupplierProductList());
return resultPageModel;
}


@Override
public SupplierProduct getSupplierProductByProductModel(String productModel) {
Expand Down

0 comments on commit f9a4188

Please sign in to comment.