16 lines
291 B
PHP
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();
|
|
}
|
|
|
|
}
|