SpecimenServiceInterface.php 845 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php

namespace Meibuyu\Rpc\Service\Interfaces\ProductDevelop;


/**
 * @author chentianyu
 */
interface SpecimenServiceInterface
{

    /**
     * 创建物流信息
     * @param $data
     * @return int|string
     * @author chentianyu
     */
    public function creatLogistics($data);

20 21 22 23 24 25 26 27 28 29 30 31 32 33
    /**
     * 样品库管理列表
     * @param $params
     */
    public function getSpecimenList($params);

    /**
     * 批量获取待入库列表
     * @param $params
     * @return void
     * @author chentianyu
     */
    public function getBatchStockInList($params);

34

35 36 37 38 39 40
    /**
     * 批量查询退货信息列表
     * @return array
     * @author chentianyu
     */
    public function batchProductReturnListNew($params);
41 42 43 44 45 46 47 48



    /**
     * 写入新品开发日志
     */
    public function insertProductDevelopLog($params);
    
49
}