This commit is contained in:
2023-04-18 13:27:35 +08:00
parent fde2f44766
commit 9acd823317
6 changed files with 61 additions and 54 deletions
-5
View File
@@ -33,11 +33,6 @@ class OperationManual extends Model
*/
protected array $fillable = ['manual_id', 'app_type', 'client_type', 'status', 'sort', 'title', 'content', 'created_at', 'updated_at'];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['manual_id' => 'string', 'app_type' => 'integer', 'client_type' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
protected string $primaryKey = "manual_id";
/**