Files
xk-api-yii/common/modelsgii/newDb/CardModelGii.php
2025-01-04 15:29:44 +08:00

50 lines
932 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 CardModelGii extends \common\core\BaseNewActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return '{{%card}}';
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
];
}
}