32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models\YiiModels;
|
|
|
|
use App\Models\Extend\SoftDeletesInt;
|
|
|
|
/**
|
|
* App\Models\YiiModels\Address
|
|
*
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property string $name
|
|
* @property string $mobile
|
|
* @property string $region 地区
|
|
* @property string $detail_address 详细地址
|
|
* @property int $is_default 是否默认地址0否1是
|
|
* @property \Illuminate\Support\Carbon $created_at
|
|
* @property \Illuminate\Support\Carbon $updated_at
|
|
* @property int $is_delete
|
|
* @property-read string $created_at_format 创建时间的格式化
|
|
* @property-read string $status_string 状态名称
|
|
* @property-read string $updated_at_format 更新时间的格式化
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\Address newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\Address newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\Address query()
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Address extends YiiBaseModel
|
|
{
|
|
use SoftDeletesInt;
|
|
}
|