82 lines
3.0 KiB
PHP
82 lines
3.0 KiB
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace App\System\Model;
|
|
|
|
use Hyperf\Database\Model\SoftDeletes;
|
|
use Builder\BaseModel;
|
|
/**
|
|
* @property int $id 主键
|
|
* @property int $group_id 接口组ID
|
|
* @property string $name 接口名称
|
|
* @property string $access_name 接口访问名称
|
|
* @property string $class_name 类命名空间
|
|
* @property string $method_name 方法名
|
|
* @property int $auth_mode 认证模式 (1简易 2复杂)
|
|
* @property string $request_mode 请求模式 (A 所有 P POST G GET)
|
|
* @property string $description 接口说明介绍
|
|
* @property string $response 返回内容示例
|
|
* @property int $status 状态 (1正常 2停用)
|
|
* @property int $created_by 创建者
|
|
* @property int $updated_by 更新者
|
|
* @property \Carbon\Carbon $created_at 创建时间
|
|
* @property \Carbon\Carbon $updated_at 更新时间
|
|
* @property string $deleted_at 删除时间
|
|
* @property string $remark 备注
|
|
* @property-read \Hyperf\Database\Model\Collection|SystemApiColumn[] $apiColumn
|
|
* @property-read SystemApiGroup $apiGroup
|
|
* @property-read \Hyperf\Database\Model\Collection|SystemApp[] $apps
|
|
*/
|
|
class SystemApi extends BaseModel
|
|
{
|
|
use SoftDeletes;
|
|
public const METHOD_ALL = 'A';
|
|
public const METHOD_POST = 'P';
|
|
public const METHOD_GET = 'G';
|
|
public const METHOD_PUT = 'U';
|
|
public const METHOD_DELETE = 'D';
|
|
public const AUTH_MODE_EASY = 1;
|
|
public const AUTH_MODE_NORMAL = 2;
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected ?string $table = 'system_api';
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected array $fillable = ['id', 'group_id', 'name', 'access_name', 'class_name', 'method_name', 'auth_mode', 'request_mode', 'description', 'response', 'status', 'created_by', 'updated_by', 'created_at', 'updated_at', 'deleted_at', 'remark'];
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected array $casts = ['id' => 'integer', 'group_id' => 'integer', 'auth_mode' => 'integer', 'status' => 'integer', 'created_by' => 'integer', 'updated_by' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
|
|
/**
|
|
* 通过中间表关联APP
|
|
* @return \Hyperf\Database\Model\Relations\BelongsToMany
|
|
*/
|
|
public function apps() : \Hyperf\Database\Model\Relations\BelongsToMany
|
|
{
|
|
return $this->belongsToMany(SystemApp::class, 'system_app_api', 'api_id', 'app_id');
|
|
}
|
|
/**
|
|
* 关联API分组
|
|
* @return \Hyperf\Database\Model\Relations\HasOne
|
|
*/
|
|
public function apiGroup() : \Hyperf\Database\Model\Relations\HasOne
|
|
{
|
|
return $this->hasOne(SystemApiGroup::class, 'id', 'group_id');
|
|
}
|
|
/**
|
|
* 关联API字段
|
|
* @return \Hyperf\Database\Model\Relations\hasMany
|
|
*/
|
|
public function apiColumn() : \Hyperf\Database\Model\Relations\hasMany
|
|
{
|
|
return $this->hasMany(SystemApiColumn::class, 'api_id', 'id');
|
|
}
|
|
} |