SmsVerificationCode.php 618 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace catchAdmin\sms\model;
  3. use catcher\base\CatchModel as Model;
  4. use catcher\traits\db\BaseOptionsTrait;
  5. use catcher\traits\db\ScopeTrait;
  6. class SmsVerificationCode extends Model
  7. {
  8. use BaseOptionsTrait, ScopeTrait;
  9. // 表名
  10. public $name = 'sms_verification_code';
  11. // 数据库字段映射
  12. public $field = array(
  13. 'id',
  14. // 手机号
  15. 'mobile',
  16. // 验证码
  17. 'code',
  18. // 使用次数(3次后无效)
  19. 'use_times',
  20. 'access_ip',
  21. // 创建时间
  22. 'created_at',
  23. // 更新时间
  24. 'updated_at',
  25. );
  26. }