FileServiceInterface.php 281 Bytes
Newer Older
周智鹏's avatar
周智鹏 committed
1 2
<?php

3
namespace Meibuyu\Rpc\Service\Interfaces\File;
周智鹏's avatar
周智鹏 committed
4 5 6 7 8 9 10 11 12

interface FileServiceInterface
{
    /**
     * @param string $type 类型编码 0001
     * @param integer $number 生成条形码数量 100
     * @return mixed
     */
    public function generateBarCode($type, $number);
13
}