| 1234567891011121314151617181920212223 |
- <?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}}
- }
|