multi-store/app/common/model/system_store/SystemStoreStaff.php
2024-06-01 15:44:56 +08:00

22 lines
370 B
PHP

<?php
namespace app\common\model\system_store;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 门店列表模型
* Class SystemStore
* @package app\common\model\system_store
*/
class SystemStoreStaff extends BaseModel
{
use SoftDelete;
protected $name = 'system_store_staff';
protected $deleteTime = 'delete_time';
}