123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Prettus\Repository\Contracts\Transformable;
- use Prettus\Repository\Traits\TransformableTrait;
- /**
- * Class Withdraw.
- *
- * @package namespace App\Models;
- * @property int $id
- * @property int $m_id 用户ID
- * @property int $status 状态,1:待审核,2:已驳回,3:已完成
- * @property float $money 提现金额
- * @property float $service_money 手续费
- * @property float $withdraw_money 到账金额
- * @property \Illuminate\Support\Carbon|null $created_at
- * @property \Illuminate\Support\Carbon|null $updated_at
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw query()
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereMId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereMoney($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereServiceMoney($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereStatus($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereUpdatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereWithdrawMoney($value)
- * @mixin \Eloquent
- * @property int|null $withdraw_type 打款类型:1:自动转账,2:线下打款
- * @property string|null $wx_data
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereWithdrawType($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereWxData($value)
- * @property int $coin_id 货币类型
- * @property string $address
- * @property string $hash
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereAddress($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereCoinId($value)
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereHash($value)
- * @property int $task_id 任务ID
- * @method static \Illuminate\Database\Eloquent\Builder|Withdraw whereTaskId($value)
- */
- class Withdraw extends Model implements Transformable
- {
- use TransformableTrait;
- /**
- * The attributes that are mass assignable.
- *
- * @var array
- */
- protected $guarded = ['id', 'updated_at', 'created_at'];
- }
|