DDEmployee.php 333 B

1234567891011121314151617
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class DDEmployee extends Model
  5. {
  6. protected $guarded = [];
  7. protected $table = "dd_employee"; //指定表
  8. const CREATED_AT = 'crt_time';
  9. const UPDATED_AT = 'upd_time';
  10. protected $dateFormat = 'U';
  11. const qx_zero = 0;
  12. const qx_one = 1;
  13. }