FileServiceInterface.php 445 Bytes
<?php

namespace Meibuyu\Micro\Service\Interfaces\File;

/**
 * @deprecated 此接口废弃,在之后的版本会被删除
 * 请引入meibuyu/rpc组件,使用Meibuyu\Rpc\Service\Interfaces\File\FileServiceInterface
 */
interface FileServiceInterface
{
    /**
     * @param string $type 类型编码 0001
     * @param integer $number 生成条形码数量 100
     * @return mixed
     */
    public function generateBarCode($type, $number);
}