35 lines
814 B
PHP
35 lines
814 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $summary_day_id
|
|
* @property int $account_type
|
|
* @property int $belong_id
|
|
* @property string $total_money
|
|
* @property string $wechat_money
|
|
* @property string $alipay_money
|
|
* @property string $unionpay_money
|
|
* @property string $balace_money
|
|
* @property string $create_date
|
|
*/
|
|
class TradeSummaryDay extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'trade_summary_day';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['summary_day_id' => 'integer', 'account_type' => 'integer', 'belong_id' => 'integer'];
|
|
}
|