83 lines
2.3 KiB
PHP
83 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
|
|
|
|
use Hyperf\Database\Model\Collection;
|
|
use Hyperf\Snowflake\Concern\Snowflake;
|
|
|
|
/**
|
|
* @property int $detection_project_id 主键id
|
|
* @property string $detection_project_title 检测项目标题
|
|
* @property string $detection_project_name 检测项目名称
|
|
* @property int $company_id 合作公司id
|
|
* @property string $detection_project_price 检测价格
|
|
* @property int $detection_time 检测时间(小时)
|
|
* @property string $img_path 内容图片地址
|
|
* @property string $informed_consent_form 知情同意书
|
|
* @property \Carbon\Carbon $created_at 创建时间
|
|
* @property \Carbon\Carbon $updated_at 修改时间
|
|
*/
|
|
class DetectionProject extends Model
|
|
{
|
|
use Snowflake;
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'detection_project';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = ['detection_project_id', 'detection_project_title', 'detection_project_name', 'company_id', 'detection_project_price', 'detection_time', 'img_path', 'informed_consent_form', 'created_at', 'updated_at'];
|
|
|
|
protected string $primaryKey = "detection_project_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|DetectionProject
|
|
*/
|
|
public static function addBasicCompany(array $data): \Hyperf\Database\Model\Model|DetectionProject
|
|
{
|
|
return self::create($data);
|
|
}
|
|
|
|
/**
|
|
* 修改-批量
|
|
* @param array $params
|
|
* @param array $data
|
|
* @return int
|
|
*/
|
|
public static function editBasicCompany(array $params = [], array $data = []): int
|
|
{
|
|
return self::where($params)->update($data);
|
|
}
|
|
}
|