链街Dcat后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
296 B

  1. <?php
  2. /**
  3. * 总账的模型
  4. */
  5. namespace App\Models\v3;
  6. use Dcat\Admin\Traits\HasDateTimeFormatter;
  7. use Illuminate\Database\Eloquent\Model;
  8. class FinancialRecord extends Model
  9. {
  10. use HasDateTimeFormatter;
  11. protected $table = 'lanzu_financial_record';
  12. protected $dateFormat = 'U';
  13. }