CustomerRepeat.php 237 B

1234567891011
  1. <?php
  2. namespace App\Model;
  3. class CustomerRepeat extends UseScopeBaseModel
  4. {
  5. protected $table = "customer_repeat"; //指定表
  6. const CREATED_AT = 'crt_time';
  7. const UPDATED_AT = 'upd_time';
  8. protected $dateFormat = 'U';
  9. }