| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Models\manager\WashConfig;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- /**
- * 平台责任人模型
- * @author 唐远望
- * @version 1.0
- * @date 2026-01-06
- */
- class PlatFormMember extends Model
- {
- use HasFactory;
- // 与模型关联的表名
- protected $table = 'platform_member';
- // 是否主动维护时间戳
- public $timestamps = false;
- // 定义时间戳字段名
- // const CREATED_AT = 'insert_time';
- // const UPDATED_AT = 'update_time';
- }
|