OaSubEmployee.php 245 B

1234567891011121314151617
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. *
  6. * Class Unit
  7. * @package App\Models
  8. */
  9. class OaSubEmployee extends Model
  10. {
  11. protected $table = "oa_sub_employee"; //指定表
  12. protected $dateFormat = null;
  13. }