| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "{{%SMS_RECORD}}".
- *
- * @property string ID
- * @property string USER_ID 用户ID
- * @property string CLASSIFY 类型
- * @property string CONTENT 内容
- * @property string COUNTRY_ID 国家ID
- * @property string MOBILE 号码
- * @property int RESULT 状态
- * @property string RESPONSE 回调
- * @property string CREATED_AT 时间
- */
- class SmsRecord extends \common\components\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%SMS_RECORD}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['ID'], 'string', 'max' => 32],
- [['ID'], 'unique'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'USER_ID' => '用户ID',
- 'CLASSIFY' => '类型',
- 'COUNTRY_ID' => '国家ID',
- 'MOBILE' => '号码',
- 'CONTENT' => '内容',
- 'RESULT' => '状态',
- 'RESPONSE' => '回调',
- 'CREATED_AT' => '创建时间',
- ];
- }
- }
|