Files
cashier/app/admin/service/curd/templates/model/model.code
你的名字 ac0f12b21a 1
2025-10-15 14:53:54 +08:00

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