ShareCommissionRecord.php 366 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. class ShareCommissionRecord extends BaseModel
  4. {
  5. protected $table = 'share_commission_records';
  6. protected $guarded = [];
  7. protected $hidden = [];
  8. protected $casts = [
  9. 'stat_date' => 'date:Y-m-d', 'base_amount' => 'decimal:4',
  10. 'rate' => 'decimal:4', 'amount' => 'decimal:4', 'status' => 'integer',
  11. ];
  12. }