| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- use Yii;
- /**
- * This is the model class for table "{{%ShareHolderAreaAgentApply}}".
- *
- * @property integer $id
- * @property integer $share_holder_id
- * @property integer $store_id
- * @property integer $status
- * @property integer $user_id
- * @property string $params
- * @property integer $is_delete
- * @property integer $agent_type
- * @property integer $province_id
- * @property integer $city_id
- * @property integer $district_id
- * @property integer $apply_time
- * @property integer $created_at
- * @property integer $updated_at
- */
- class ShareHolderAreaAgentApply extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%share_holder_area_agent_apply}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class
- ]
- ];
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'share_holder_id', 'status', 'user_id', 'is_delete', 'created_at', 'updated_at', 'store_id', 'apply_time', 'agent_type', 'province_id', 'city_id', 'district_id'], 'integer'],
- [['params'], 'string'],
- [['created_at', 'updated_at', 'apply_time'], 'safe']
- ];
- }
- }
|