23 lines
404 B
Plaintext
23 lines
404 B
Plaintext
<?php
|
|
|
|
namespace {{modelNamespace}};
|
|
|
|
use app\common\model\TimeModel;
|
|
|
|
class {{modelName}} extends TimeModel
|
|
{
|
|
|
|
protected function getOptions(): array
|
|
{
|
|
return [
|
|
'name' => "{{table}}",
|
|
'table' => "{{prefix_table}}",
|
|
'deleteTime' => {{deleteTime}},
|
|
];
|
|
}
|
|
|
|
public static array $notes = {{selectArrays}};
|
|
|
|
{{relationList}}
|
|
|
|
} |