Files
yusheng-php/application/admin/command/Crud/stubs/mixins/modelinit.stub

11 lines
288 B
Plaintext
Raw Normal View History

2025-08-07 20:21:47 +08:00
protected static function init()
{
self::afterInsert(function ($row) {
if (!$row['{%order%}']) {
$pk = $row->getPk();
$row->getQuery()->where($pk, $row[$pk])->update(['{%order%}' => $row[$pk]]);
}
});
}