This commit is contained in:
2023-03-17 17:24:38 +08:00
parent 8dcf90368f
commit 3bda1ae8f7
3 changed files with 1 additions and 11 deletions
-5
View File
@@ -43,11 +43,6 @@ class DoctorBankCard extends Model
*/
protected array $fillable = ['bank_card_id', 'doctor_id', 'bank_id', 'bank_card_code', 'bank_card_code_mask', 'account_name', 'card_id_number', 'account_phone', 'province_id', 'province', 'city_id', 'city', 'county_id', 'county', 'created_at', 'updated_at'];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['bank_card_id' => 'string', 'doctor_id' => 'string', 'bank_id' => 'string', 'province_id' => 'integer', 'city_id' => 'integer', 'county_id' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
protected string $primaryKey = "bank_card_id";
/**