14 lines
237 B
PHP
14 lines
237 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
/**
|
|
* 分类模型
|
|
*/
|
|
class ActionLog extends Base{
|
|
|
|
protected function getModelIdAttr($value, $data){
|
|
$value = get_document_field($data['model'], "name", "id");
|
|
return $value ? $value : 0;
|
|
}
|
|
} |