新增模型合并

This commit is contained in:
monanxiao 2023-03-20 13:38:48 +08:00
parent 5551e71140
commit 3fc2fcfe56

View File

@ -0,0 +1,22 @@
<?php
/**
* @copyright Copyright (c) 2021 勾股工作室
* @license https://opensource.org/licenses/Apache-2.0
* @link https://www.gougucms.com
*/
namespace app\admin\model;
use think\model;
use app\common\model\User;
use app\admin\model\ShopUser;
/**
*
* 供应链服务小组提现模型
*
*/
class SupplyExtract extends Model
{
// 设置当前模型对应的完整数据表名称
protected $table = 'supply_extract';
}