50 lines
953 B
PHP
50 lines
953 B
PHP
<?php
|
|
|
|
namespace common\modelsgii\newDb;
|
|
|
|
/**
|
|
* This is the model class for table "yii_address".
|
|
*
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property string $name
|
|
* @property string $mobile
|
|
* @property string $province 省
|
|
* @property string $city 市
|
|
* @property string $area 区
|
|
* @property string $region 省市区
|
|
* @property string $detail_address 详细地址
|
|
* @property int $is_default 是否默认地址0否1是
|
|
* @property int $created_at
|
|
* @property int $updated_at
|
|
* @property int $deleted_at
|
|
*/
|
|
class MonthlyPaymentModelGii extends \common\core\BaseNewActiveRecord
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return '{{%monthly_payment}}';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function attributeLabels()
|
|
{
|
|
return [
|
|
];
|
|
}
|
|
}
|