| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%sms_record}}".
- *
- * @property integer $id
- * @property string $mobile
- * @property string $tpl
- * @property string $content
- * @property string $ip
- * @property integer $created_at
- */
- class SmsRecord extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%sms_record}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['created_at'], 'integer'],
- [['mobile', 'tpl', 'ip'], 'string', 'max' => 255],
- [['content'], 'string', 'max' => 1000],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'mobile' => 'Mobile',
- 'tpl' => 'Tpl',
- 'content' => 'Content',
- 'ip' => 'Ip',
- 'created_at' => 'Addtime',
- ];
- }
- }
|