| 1234567891011121314 |
- <?php
- namespace App\Models;
- class ShareCommissionRecord extends BaseModel
- {
- protected $table = 'share_commission_records';
- protected $guarded = [];
- protected $hidden = [];
- protected $casts = [
- 'stat_date' => 'date:Y-m-d', 'base_amount' => 'decimal:4',
- 'rate' => 'decimal:4', 'amount' => 'decimal:4', 'status' => 'integer',
- ];
- }
|