|
@@ -1742,16 +1742,17 @@ namespace App\Models{
|
|
|
* @property int $trans_type 交易类型(income:收入 expense:支出)
|
|
|
* @property string $storage_type 存储类型(balance:余额 recharge:充值)
|
|
|
* @property string $amount 交易金额
|
|
|
- * @property string $before_balance 交易前余额
|
|
|
- * @property string $after_balance 交易后余额
|
|
|
- * @property string $before_recharge_balance 交易前充值余额
|
|
|
- * @property string $after_recharge_balance 交易后充值余额
|
|
|
- * @property string $trans_time 交易时间
|
|
|
+ * @property string|null $before_balance 交易前余额
|
|
|
+ * @property string|null $after_balance 交易后余额
|
|
|
+ * @property string|null $before_recharge_balance 交易前充值余额
|
|
|
+ * @property string|null $after_recharge_balance 交易后充值余额
|
|
|
+ * @property string|null $trans_time 交易时间
|
|
|
* @property string|null $remark 备注
|
|
|
* @property string $state 交易状态(processing:进行中 success:成功 fail:失败 cancel:取消)
|
|
|
* @property string|null $province 省份
|
|
|
* @property string|null $city 城市
|
|
|
* @property string|null $district 地区
|
|
|
+ * @property string|null $trans_no 交易单号
|
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
* @property \Illuminate\Support\Carbon|null $deleted_at
|
|
@@ -1782,6 +1783,7 @@ namespace App\Models{
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletTransRecord whereRole($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletTransRecord whereState($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletTransRecord whereStorageType($value)
|
|
|
+ * @method static \Illuminate\Database\Eloquent\Builder<static>|WalletTransRecord whereTransNo($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletTransRecord whereTransTime($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletTransRecord whereTransType($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletTransRecord whereUpdatedAt($value)
|
|
@@ -1811,6 +1813,7 @@ namespace App\Models{
|
|
|
* @property string|null $audit_time 审核时间
|
|
|
* @property string|null $audit_remark 审核回执
|
|
|
* @property string $audit_state 审核状态
|
|
|
+ * @property string|null $trans_no 交易单号
|
|
|
* @property int $state 状态
|
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
@@ -1834,6 +1837,7 @@ namespace App\Models{
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletWithdrawRecord whereId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletWithdrawRecord whereRemark($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletWithdrawRecord whereState($value)
|
|
|
+ * @method static \Illuminate\Database\Eloquent\Builder<static>|WalletWithdrawRecord whereTransNo($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletWithdrawRecord whereUpdatedAt($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletWithdrawRecord whereWalletId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder<static>|WalletWithdrawRecord whereWithdrawAccount($value)
|