|
@@ -4,17 +4,16 @@ namespace app\data\controller\api\auth;
|
|
|
|
|
|
use app\data\controller\api\Auth;
|
|
|
use app\data\model\DataUserAddress;
|
|
|
+use hg\apidoc\annotation\Title;
|
|
|
use think\admin\extend\CodeExtend;
|
|
|
|
|
|
/**
|
|
|
- * 用户收货地址管理
|
|
|
- * Class Address
|
|
|
- * @package app\data\controller\api\auth
|
|
|
+ * @Title("用户收货地址管理")
|
|
|
*/
|
|
|
class Address extends Auth
|
|
|
{
|
|
|
/**
|
|
|
- * 添加收货地址
|
|
|
+ * @Title("添加收货地址")
|
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
|
* @throws \think\db\exception\DbException
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
@@ -129,4 +128,4 @@ class Address extends Auth
|
|
|
$map = ['code' => $code, 'uuid' => $this->uuid, 'deleted' => 0];
|
|
|
return DataUserAddress::mk()->withoutField('deleted')->where($map)->findOrEmpty()->toArray();
|
|
|
}
|
|
|
-}
|
|
|
+}
|