新增发起提现接口

This commit is contained in:
2023-04-08 10:16:57 +08:00
parent ac5467b951
commit cde4b9b664
6 changed files with 222 additions and 14 deletions
-5
View File
@@ -34,11 +34,6 @@ class DoctorWord extends Model
*/
protected array $fillable = ['doctor_words_id', 'doctor_id', 'words_type', 'words_status', 'sort', 'words', 'created_at', 'updated_at'];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['doctor_words_id' => 'string', 'doctor_id' => 'integer', 'words_type' => 'integer', 'words_status' => 'integer', 'sort' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
protected string $primaryKey = "doctor_words_id";
/**