; use app\common\model\base\BaseModel; class <#modelName#> extends BaseModel { <#if name#> protected $name = '<#name#>'; <#endif#> <#if weigh#> public static function onAfterInsert($data) { $data->weigh=1000-$data->id; $data->save(); } <#endif#> <#if methods#> <#methods#> <#endif#> }