TaskSystem/app/common/model/user/Withdraw.php

17 lines
201 B
PHP
Raw Normal View History

2023-07-24 16:37:03 +08:00
<?php
namespace app\common\model\user;
use think\model;
class Withdraw extends Model
{
public function buildOrderSn()
{
return 'TX' . date('YmdHis') . rand(10000, 99999);
}
}