model.code 404 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace {{modelNamespace}};
  3. use app\common\model\TimeModel;
  4. class {{modelName}} extends TimeModel
  5. {
  6. protected function getOptions(): array
  7. {
  8. return [
  9. 'name' => "{{table}}",
  10. 'table' => "{{prefix_table}}",
  11. 'deleteTime' => {{deleteTime}},
  12. ];
  13. }
  14. public static array $notes = {{selectArrays}};
  15. {{relationList}}
  16. }