| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace App\Module\Sms\Models;
- use UCore\ModelCore;
- use Illuminate\Database\Eloquent\SoftDeletes;
- /**
- * 短信验证码模型
- *
- * field start
- * @property int $id
- * @property string $mobile
- * @property string $token
- * @property string $type
- * @property string $code_value
- * @property \Carbon\Carbon $created_at
- * @property \Carbon\Carbon $updated_at
- * @property \Carbon\Carbon $deleted_at 删除时间
- * field end
- *
- */
- class SmsCode extends ModelCore
- {
- use SoftDeletes;
- /**
- * 数据表名称
- *
- * @var string
- */
- protected $table = 'sms_code';
- // attrlist start
- protected $fillable = [
- 'id',
- 'mobile',
- 'token',
- 'type',
- 'code_value',
- ];
- // attrlist end
-
- /**
- * 应该被调整为日期的属性
- *
- * @var array
- */
- protected $dates = [
- 'created_at',
- 'updated_at',
- 'deleted_at'
- ];
- }
|