修改沟通市场
This commit is contained in:
@@ -11,8 +11,13 @@ use Hyperf\Snowflake\Concern\Snowflake;
|
||||
|
||||
/**
|
||||
* @property int $detection_organ_id 主键id
|
||||
* @property int $company_id 合作公司id
|
||||
* @property string $detection_organ_name 检测机构名称
|
||||
* @property string $app_id key
|
||||
* @property string $app_secret 秘钥
|
||||
* @property int $status 状态(1:正常 2:删除)
|
||||
* @property string $request_dev_url 测试请求地址
|
||||
* @property string $request_prod_url 正式请求地址
|
||||
* @property \Carbon\Carbon $created_at 创建时间
|
||||
* @property \Carbon\Carbon $updated_at 修改时间
|
||||
*/
|
||||
@@ -28,7 +33,7 @@ class BasicDetectionOrgan extends Model
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*/
|
||||
protected array $fillable = ['detection_organ_id', 'detection_organ_name', 'status', 'created_at', 'updated_at'];
|
||||
protected array $fillable = ['detection_organ_id', 'company_id', 'detection_organ_name', 'app_id', 'app_secret', 'status', 'request_dev_url', 'request_prod_url', 'created_at', 'updated_at'];
|
||||
|
||||
protected string $primaryKey = "detection_organ_id";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user