mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 06:30:49 +00:00
20 lines
359 B
PHP
20 lines
359 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Utils;
|
||
|
|
|
||
|
|
use App\Utils\NumberUtils;
|
||
|
|
use Yeepay\Yop\Sdk\Utils\Http\HttpUtils;
|
||
|
|
|
||
|
|
class GeneratorUtils
|
||
|
|
{
|
||
|
|
|
||
|
|
public static function generateBatchNumber($type = "add")
|
||
|
|
{
|
||
|
|
$code = "A";//批量添加
|
||
|
|
if ($type != 1) {
|
||
|
|
$code = "I";//导入
|
||
|
|
}
|
||
|
|
return $code.date("YmdHis") . rand(1000, 10000);
|
||
|
|
}
|
||
|
|
}
|