| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- /*
- * @Author: 凯
- * @Date: 2021-04-21 14:31:46
- * @LastEditTime: 2021-04-23 11:09:41
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: \admin_php\models\SupplierNotice.php
- */
- namespace app\models;
- use Yii;
- /**
- * @description:
- * @property integer $user_id
- * @property integer $is_mini
- * @property integer $is_sms
- * agent_examine
- */
- class UserWarn extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%user_warn}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['user_id', 'is_sms', 'is_mini'], 'integer'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'user_id' => '用户ID',
- 'is_mini' => '小程序订阅',
- 'is_sms' => '短信提醒',
- 'money' => '预警金额',
- 'created_at' => '创建时间',
- 'updated_at' => '更新时间',
- ];
- }
- }
|