PlatFormMember.php 553 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Models\manager\WashConfig;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. /**
  6. * 平台责任人模型
  7. * @author 唐远望
  8. * @version 1.0
  9. * @date 2026-01-06
  10. */
  11. class PlatFormMember extends Model
  12. {
  13. use HasFactory;
  14. // 与模型关联的表名
  15. protected $table = 'platform_member';
  16. // 是否主动维护时间戳
  17. public $timestamps = false;
  18. // 定义时间戳字段名
  19. // const CREATED_AT = 'insert_time';
  20. // const UPDATED_AT = 'update_time';
  21. }