multi-store/app/common/logic/SystemStoreStaffLogic.php
2024-06-05 15:20:58 +08:00

16 lines
291 B
PHP

<?php
namespace app\common\logic;
use app\common\model\system_store\SystemStoreStaff;
class SystemStoreStaffLogic extends BaseLogic
{
public function listByWhere($where, $field = '*')
{
return SystemStoreStaff::where($where)->field($field)->select()->toArray();
}
}