255],
[['detail'], 'string', 'max' => 1000],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'user_id' => 'User ID',
'name' => '收货人',
'province_id' => 'Province ID',
'province' => '省份名称',
'city_id' => 'City ID',
'city' => '城市名称',
'district_id' => 'District ID',
'district' => '县区名称',
'mobile' => '联系电话',
'detail' => '详细地址',
'is_default' => '是否默认',
'is_delete' => '删除',
'created_at' => 'Created At',
'updated_at' => 'Updated At',
'deleted_at' => 'Deleted At',
'latitude' => '经度',
'longitude' => '纬度',
'location' => '位置',
'type' => '类型:0快递 1同城'
];
}
public function beforeSave($insert)
{
$this->name = Html::encode($this->name);
$this->mobile = Html::encode($this->mobile);
$this->detail = Html::encode($this->detail);
return parent::beforeSave($insert);
}
}