新增物流回调,新增删除常用语

This commit is contained in:
2023-03-23 14:05:24 +08:00
parent ac382e288c
commit 593b7956b3
10 changed files with 141 additions and 22 deletions
+10
View File
@@ -72,4 +72,14 @@ class DoctorWord extends Model
{
return self::create($data);
}
/**
* 删除
* @param array $params
* @return int|mixed
*/
public static function deleteDoctorWord(array $params): mixed
{
return self::where($params)->delete();
}
}