MonthlyPsOrderDetails.php 314 B

12345678910111213
  1. <?php
  2. namespace App\Model;
  3. class MonthlyPsOrderDetails extends DataScopeBaseModel
  4. {
  5. //人员月度工资详细
  6. protected $guarded = [];
  7. protected $table = "monthly_ps_order_details"; //指定表
  8. const CREATED_AT = 'crt_time';
  9. const UPDATED_AT = 'upd_time';
  10. protected $dateFormat = 'U';
  11. }