MemberDevice.php 461 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\model;
  3. use DateTimeInterface;
  4. use support\Model;
  5. class MemberDevice extends Model
  6. {
  7. protected $table = 'member_device';
  8. protected $primaryKey = 'member_device_id';
  9. public $keyType = 'string';
  10. protected $dateFormat = 'U';
  11. const CREATED_AT = 'member_device_addtimes';
  12. const UPDATED_AT = null;
  13. public function serializeDate(DateTimeInterface $date)
  14. {
  15. return $date->format('Y-m-d H:i:s');
  16. }
  17. }