| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhWifi".
- *
- * @property int $id
- * @property string $shopId 微信shop_id
- * @property string $ssid wifi帐号
- * @property string $ssidPassword wifi密码
- * @property string $createTime 创建时间
- * @property string $updateTime
- */
- class xhWifi extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhWifi';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['createTime'], 'required'],
- [['createTime', 'updateTime'], 'safe'],
- [['shopId', 'ssid'], 'string', 'max' => 20],
- [['ssidPassword'], 'string', 'max' => 30],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'shopId' => 'Shop ID',
- 'ssid' => 'Ssid',
- 'ssidPassword' => 'Ssid Password',
- 'createTime' => 'Create Time',
- 'updateTime' => 'Update Time',
- ];
- }
- }
|