美文网首页
产品供货商 API

产品供货商 API

作者: 西北狂刀 | 来源:发表于2017-07-24 18:57 被阅读0次

    1、根据产品id查询产品
    /product/findProductByProductSn
    参数:
    param:{productSn:11111}
    return : Product

    2、产品列表点击产品查询供货商list
    /supplier/querySupplierListByProductCn
    参数:(需要用哪个搜索写那个)
    param:{
    private String productSn;
    private String supplierNo;
    private String supplierUser;
    private String supplierName;
    private String phone,
    private Integer cPage;(必填)
    private Integer pSize;(必填)
    }
    return :List<Supplier> list
    3、设置主服务商
    /supplier/updateSuppierAndProduct
    参数
    param:{
    private String productSn;
    private Long supplierId;
    isDefault:1 //0 次服务商,1主服务商
    }
    return : 0/1 1标识成功。
    4、新增供应商
    /supplier/save
    参数:
    param:{
    private String supplierName;
    private String supplierUser;
    private String phone;
    private String address;
    private String remark;
    private String url;
    private Integer isDefault; // 0 true, 1 false; 默认是0;
    productSn:'2222'
    }
    return suppliperId
    5、删除供应商和产品的供货关系(批量和单个)
    /supplier/relieveProductAndSupplier
    参数:
    param:{
    supplierIds:[1,2,3...],
    productSn:"222222"
    }
    return :{ data:5 ,flag:"success"} //成功条数。

    6、采购
    /supplier/querySupplierListByOrderId
    参数:
    param:{
    orderSn:xxxxx,
    isDefault:0/1 可选
    }
    return:{
    list:[{suppliers。。。。。。}],flag:"success"
    }

    -----------------------上面是新接口---------------------------------
    2、update
    /supplier/updateSuppierAndProduct
    param:{
    relateId:XXXXX,
    productList:{
    productSn:2222,
    productSn:2222,
    ....
    },
    supplierList:{
    id:333333
    id:2222,
    ....
    }
    }
    3.根据orderId查询对应产品的供货商列表
    /supplier/querySupplierListByOrderId
    {
    orderSn:2222
    }
    return: List<Supplier> list

    5、根据productCn查询对应的all供货商

    /supplier/querySupplierListByProductCn
    {
    productCn:2222
    }
    return: List<Supplier> list

    相关文章

      网友评论

          本文标题:产品供货商 API

          本文链接:https://www.haomeiwen.com/subject/yqtikxtx.html