新增 获取检测疾病分类列表 接口

This commit is contained in:
2023-07-27 09:11:26 +08:00
parent 822756c39c
commit 174770cdb3
7 changed files with 123 additions and 6 deletions
+77
View File
@@ -0,0 +1,77 @@
<?php
declare(strict_types=1);
namespace App\Model;
use Hyperf\Database\Model\Collection;
/**
* @property int $id 主键id
* @property int $detection_project_id 检测项目id
* @property string $name 疾病分类名称
* @property int $status 状态(1:正常 2:删除)
* @property int $enable 是否启用(1:是 2:否)
* @property int $sort 排序值(越小排序越往前)
* @property \Carbon\Carbon $created_at 创建时间
* @property \Carbon\Carbon $updated_at 修改时间
*/
class DiseaseClassDetection extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'disease_class_detection';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = ['id', 'detection_project_id', 'name', 'status', 'enable', 'sort', 'created_at', 'updated_at'];
protected string $primaryKey = "id";
/**
* 获取信息-单条
* @param array $params
* @param array $fields
* @return object|null
*/
public static function getOne(array $params, array $fields = ['*']): object|null
{
return self::where($params)->first($fields);
}
/**
* 获取数据-多
* @param array $params
* @param array $fields
* @return Collection|array
*/
public static function getList(array $params = [], array $fields = ['*']): Collection|array
{
return self::where($params)->get($fields);
}
/**
* 新增-批量
* @param array $data 新增数据
* @return \Hyperf\Database\Model\Model|DiseaseClassDetection
*/
public static function addDiseaseClassDetection(array $data): \Hyperf\Database\Model\Model|DiseaseClassDetection
{
return self::create($data);
}
/**
* 修改-批量
* @param array $params
* @param array $data
* @return int
*/
public static function editDiseaseClassDetection(array $params = [], array $data = []): int
{
return self::where($params)->update($data);
}
}