MemberCert.php 412 B

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