MonthlyDwOrderDetails.php 317 B

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