11 lines
166 B
PHP
11 lines
166 B
PHP
|
<?php
|
||
|
|
||
|
namespace app\model;
|
||
|
//话术表
|
||
|
class ScriptManagement extends Base
|
||
|
{
|
||
|
public static function getAll()
|
||
|
{
|
||
|
return self::column("*","id");
|
||
|
}
|
||
|
}
|