| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * @description:
- * @property string $name
- * @property string $company_name
- * @property integer $create_time
- * agent_examine
- */
- class LocalChancelList extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%localchancellist}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [[ 'name','company_name'], 'string'],
- [['id', 'create_time'], 'integer']
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'name' => '渠道号名称',
- 'company_name' => '公司名称',
- 'create_time' => '创建时间',
- ];
- }
- }
|