Customer.php 290 B

123456789101112131415161718
  1. <?php
  2. namespace app\model;
  3. use DateTimeInterface;
  4. use support\Model;
  5. class Customer extends Model
  6. {
  7. protected $table = 'customer';
  8. protected $dateFormat = 'U';
  9. public function serializeDate(DateTimeInterface $date)
  10. {
  11. return $date->format('Y-m-d H:i:s');
  12. }
  13. }