You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
250 B
12 lines
250 B
10 months ago
|
/**
|
||
|
* 修改
|
||
|
* @date {%DATE%}
|
||
|
* @param int $id
|
||
|
* @param array $data
|
||
|
* @return \crmeb\basic\BaseModel
|
||
|
*/
|
||
|
public function crudUpdate(int $id, array $data)
|
||
|
{
|
||
|
return $this->dao->update($id, $data);
|
||
|
}
|