| 12345678910111213141516171819202122232425 |
- <?php
- namespace App\Models\Manager\Personnel;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- /**
- * 员工地区关系模型
- * @author 唐远望
- * @version 1.0
- * @date 2025-12-12
- */
- class EmployeeArea extends Model
- {
- use HasFactory;
- // 与模型关联的表名
- protected $table = 'personnel_employee_area';
- // 是否主动维护时间戳
- public $timestamps = false;
- // 定义时间戳字段名
- // const CREATED_AT = 'insert_time';
- // const UPDATED_AT = 'update_time';
- }
|