修改URL和添加dubbo组
This commit is contained in:
parent
e0c41b11f1
commit
067195ff69
@ -19,7 +19,7 @@ public class PlatformWalletApi {
|
|||||||
* 根据订单号查询结算记录
|
* 根据订单号查询结算记录
|
||||||
*/
|
*/
|
||||||
public static List<MongoShopWalletLogBO> getMongoShopWalletLogBO(Long orderId) {
|
public static List<MongoShopWalletLogBO> getMongoShopWalletLogBO(Long orderId) {
|
||||||
String url = Constant.API_URL + "/tmerclub_admin/mp/shop_wallet/page?platformIoType=&amountType=&orderId=" + orderId + "&refundId=&reason=&pageNum=1&pageSize=10";
|
String url = Constant.API_URL + "/tmerclub_admin/ma/shopWallet/page?platformIoType=&amountType=&orderId=" + orderId + "&refundId=&reason=&pageNum=1&pageSize=10";
|
||||||
return JSON.parseArray(JSON.toJSONString(Json.parseObject(JSON.toJSONString(HttpUtil.get(url, PageVO.class, UrlEnum.PLATFORM)), PageVO.class).getList()), MongoShopWalletLogBO.class);
|
return JSON.parseArray(JSON.toJSONString(Json.parseObject(JSON.toJSONString(HttpUtil.get(url, PageVO.class, UrlEnum.PLATFORM)), PageVO.class).getList()), MongoShopWalletLogBO.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ public class ShopWalletApi {
|
|||||||
* 根据订单号查询结算记录
|
* 根据订单号查询结算记录
|
||||||
*/
|
*/
|
||||||
public static List<MongoShopWalletLogBO> getMongoShopWalletLogBO(Long orderId, Boolean isMainShop) {
|
public static List<MongoShopWalletLogBO> getMongoShopWalletLogBO(Long orderId, Boolean isMainShop) {
|
||||||
String url = Constant.API_URL + "/tmerclub_admin/mp/shop_wallet/page?shopIoType=&amountType=&orderId=" + orderId + "&refundId=&reason=&pageNum=1&pageSize=10";
|
String url = Constant.API_URL + "/tmerclub_admin/ma/shopWallet/page?shopIoType=&amountType=&orderId=" + orderId + "&refundId=&reason=&pageNum=1&pageSize=10";
|
||||||
if(isMainShop) {
|
if(isMainShop) {
|
||||||
return JSON.parseArray(JSON.toJSONString(Json.parseObject(JSON.toJSONString(HttpUtil.get(url, PageVO.class, UrlEnum.SHOP)), PageVO.class).getList()), MongoShopWalletLogBO.class);
|
return JSON.parseArray(JSON.toJSONString(Json.parseObject(JSON.toJSONString(HttpUtil.get(url, PageVO.class, UrlEnum.SHOP)), PageVO.class).getList()), MongoShopWalletLogBO.class);
|
||||||
} else {
|
} else {
|
||||||
|
@ -23,7 +23,8 @@ import java.util.Objects;
|
|||||||
* @date 2022/9/13 14:06
|
* @date 2022/9/13 14:06
|
||||||
*/
|
*/
|
||||||
@RestController("adminCompanyAuditingController")
|
@RestController("adminCompanyAuditingController")
|
||||||
@RequestMapping("/mp/shop_company_auditing")
|
@RequestMapping("/ma/shopAuditing")
|
||||||
|
//@RequestMapping("/mp/shop_company_auditing")
|
||||||
@Tag(name = "admin-工商信息审核情况")
|
@Tag(name = "admin-工商信息审核情况")
|
||||||
public class CompanyAuditingController {
|
public class CompanyAuditingController {
|
||||||
|
|
||||||
|
@ -30,7 +30,8 @@ import java.util.Objects;
|
|||||||
* @date 2021-01-27 09:10:00
|
* @date 2021-01-27 09:10:00
|
||||||
*/
|
*/
|
||||||
@RestController("adminHotSearchController")
|
@RestController("adminHotSearchController")
|
||||||
@RequestMapping("/mp/hot_search")
|
@RequestMapping("/ma/hotQuery")
|
||||||
|
//@RequestMapping("/mp/hot_search")
|
||||||
@Tag(name = "admin-热搜")
|
@Tag(name = "admin-热搜")
|
||||||
public class HotSearchController {
|
public class HotSearchController {
|
||||||
private static final Logger log = LoggerFactory.getLogger(HotSearchController.class);
|
private static final Logger log = LoggerFactory.getLogger(HotSearchController.class);
|
||||||
|
@ -29,7 +29,8 @@ import java.util.Objects;
|
|||||||
* @date 2020-11-24 16:38:32
|
* @date 2020-11-24 16:38:32
|
||||||
*/
|
*/
|
||||||
@RestController("adminIndexImgController")
|
@RestController("adminIndexImgController")
|
||||||
@RequestMapping("/mp/index_img")
|
@RequestMapping("/ma/indexPic")
|
||||||
|
//@RequestMapping("/mp/index_img")
|
||||||
@Tag(name = "admin-轮播图")
|
@Tag(name = "admin-轮播图")
|
||||||
public class IndexImgController {
|
public class IndexImgController {
|
||||||
|
|
||||||
|
@ -35,7 +35,8 @@ import java.util.stream.Collectors;
|
|||||||
* @date 2020-11-25 17:57:56
|
* @date 2020-11-25 17:57:56
|
||||||
*/
|
*/
|
||||||
@RestController("adminNoticeController")
|
@RestController("adminNoticeController")
|
||||||
@RequestMapping("/mp/notice")
|
@RequestMapping("/ma/notice")
|
||||||
|
//@RequestMapping("/mp/notice")
|
||||||
@Tag(name = "admin-公告")
|
@Tag(name = "admin-公告")
|
||||||
public class NoticeController {
|
public class NoticeController {
|
||||||
|
|
||||||
|
@ -28,7 +28,8 @@ import java.util.Objects;
|
|||||||
* @Date 2021/8/14 16:53
|
* @Date 2021/8/14 16:53
|
||||||
*/
|
*/
|
||||||
@RestController("adminShopCompanyController")
|
@RestController("adminShopCompanyController")
|
||||||
@RequestMapping("/mp/shop_company")
|
@RequestMapping("/ma/shopCompany")
|
||||||
|
//@RequestMapping("/mp/shop_company")
|
||||||
@Tag(name = "admin-商家工商信息")
|
@Tag(name = "admin-商家工商信息")
|
||||||
public class ShopCompanyController {
|
public class ShopCompanyController {
|
||||||
|
|
||||||
|
@ -16,7 +16,8 @@ import org.springframework.web.bind.annotation.RestController;
|
|||||||
* @Date 2021/8/14 16:45
|
* @Date 2021/8/14 16:45
|
||||||
*/
|
*/
|
||||||
@RestController("adminShopDetailController")
|
@RestController("adminShopDetailController")
|
||||||
@RequestMapping("/mp/shop_detail")
|
@RequestMapping("/ma/shopDetail")
|
||||||
|
//@RequestMapping("/mp/shop_detail")
|
||||||
@Tag(name = "admin-店铺信息")
|
@Tag(name = "admin-店铺信息")
|
||||||
public class ShopDetailController {
|
public class ShopDetailController {
|
||||||
|
|
||||||
|
@ -28,7 +28,8 @@ import java.util.Objects;
|
|||||||
* @date 2021-01-15 17:46:26
|
* @date 2021-01-15 17:46:26
|
||||||
*/
|
*/
|
||||||
@RestController("shopOfflineHandleEventController")
|
@RestController("shopOfflineHandleEventController")
|
||||||
@RequestMapping("/mp/shop_offline_handle_event")
|
@RequestMapping("/ma/offlineEvent")
|
||||||
|
//@RequestMapping("/mp/shop_offline_handle_event")
|
||||||
@Tag(name = "admin-下线处理事件")
|
@Tag(name = "admin-下线处理事件")
|
||||||
public class ShopOfflineHandleEventController {
|
public class ShopOfflineHandleEventController {
|
||||||
|
|
||||||
|
@ -21,7 +21,8 @@ import org.springframework.web.bind.annotation.RestController;
|
|||||||
* @Date 2022/6/30 17:23
|
* @Date 2022/6/30 17:23
|
||||||
*/
|
*/
|
||||||
@RestController("adminShopRechargeController")
|
@RestController("adminShopRechargeController")
|
||||||
@RequestMapping("/mp/shop_recharge")
|
@RequestMapping("/ma/shopCharge")
|
||||||
|
//@RequestMapping("/mp/shop_recharge")
|
||||||
@Tag(name = "admin-商家充值记录信息")
|
@Tag(name = "admin-商家充值记录信息")
|
||||||
public class ShopRechargeController {
|
public class ShopRechargeController {
|
||||||
|
|
||||||
|
@ -27,7 +27,8 @@ import java.util.List;
|
|||||||
* @date 2021-01-27 09:10:00
|
* @date 2021-01-27 09:10:00
|
||||||
*/
|
*/
|
||||||
@RestController("adminShopRefundAddrController")
|
@RestController("adminShopRefundAddrController")
|
||||||
@RequestMapping("/mp/shop_refund_addr")
|
@RequestMapping("/ma/ShopRedundAddr")
|
||||||
|
//@RequestMapping("/mp/shop_refund_addr")
|
||||||
@Tag(name = "admin-退货地址")
|
@Tag(name = "admin-退货地址")
|
||||||
public class ShopRefundAddrController {
|
public class ShopRefundAddrController {
|
||||||
|
|
||||||
|
@ -24,7 +24,8 @@ import java.util.Objects;
|
|||||||
* @author Orange
|
* @author Orange
|
||||||
*/
|
*/
|
||||||
@RestController("adminShopRenovationController")
|
@RestController("adminShopRenovationController")
|
||||||
@RequestMapping("/mp/shop_renovation")
|
@RequestMapping("/ma/shopRenovation")
|
||||||
|
//@RequestMapping("/mp/shop_renovation")
|
||||||
@Tag(name = "店铺装修信息")
|
@Tag(name = "店铺装修信息")
|
||||||
public class ShopRenovationController {
|
public class ShopRenovationController {
|
||||||
|
|
||||||
|
@ -23,7 +23,8 @@ import java.util.Objects;
|
|||||||
* @author 菠萝凤梨
|
* @author 菠萝凤梨
|
||||||
*/
|
*/
|
||||||
@RestController("adminShopRenovationUpDelController")
|
@RestController("adminShopRenovationUpDelController")
|
||||||
@RequestMapping("/mp/shop_renovation")
|
@RequestMapping("/ma/shopRenovation")
|
||||||
|
//@RequestMapping("/mp/shop_renovation")
|
||||||
@Tag(name = "店铺页面-修改、删除、设为主页")
|
@Tag(name = "店铺页面-修改、删除、设为主页")
|
||||||
public class ShopRenovationUpDelController {
|
public class ShopRenovationUpDelController {
|
||||||
|
|
||||||
|
@ -26,7 +26,8 @@ import java.util.Objects;
|
|||||||
* @author Orange
|
* @author Orange
|
||||||
*/
|
*/
|
||||||
@RestController("multishopShopTemplateController")
|
@RestController("multishopShopTemplateController")
|
||||||
@RequestMapping("/mp/shop_template")
|
@RequestMapping("/ma/shopTemplate")
|
||||||
|
//@RequestMapping("/mp/shop_template")
|
||||||
@Tag(name = "店铺装修模板")
|
@Tag(name = "店铺装修模板")
|
||||||
public class ShopTemplateController {
|
public class ShopTemplateController {
|
||||||
|
|
||||||
|
@ -18,11 +18,9 @@ import org.springframework.web.bind.annotation.*;
|
|||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
/**
|
|
||||||
* @author 菠萝凤梨
|
|
||||||
*/
|
|
||||||
@RestController("adminShopTemplateUpDelController")
|
@RestController("adminShopTemplateUpDelController")
|
||||||
@RequestMapping("/mp/shop_template")
|
@RequestMapping("/ma/shopTemplate")
|
||||||
|
//@RequestMapping("/mp/shop_template")
|
||||||
@Tag(name = "店铺装修模板-修改、删除、设为主页")
|
@Tag(name = "店铺装修模板-修改、删除、设为主页")
|
||||||
public class ShopTemplateUpDelController {
|
public class ShopTemplateUpDelController {
|
||||||
|
|
||||||
|
@ -30,7 +30,8 @@ import java.util.Objects;
|
|||||||
* @date 2021/6/8 19:46
|
* @date 2021/6/8 19:46
|
||||||
*/
|
*/
|
||||||
@RestController("adminShopWalletController")
|
@RestController("adminShopWalletController")
|
||||||
@RequestMapping("/mp/shop_wallet")
|
@RequestMapping("/ma/shopWallet")
|
||||||
|
//@RequestMapping("/mp/shop_wallet")
|
||||||
@Tag(name = "admin-店铺钱包")
|
@Tag(name = "admin-店铺钱包")
|
||||||
public class ShopWalletController {
|
public class ShopWalletController {
|
||||||
|
|
||||||
|
@ -26,7 +26,8 @@ import java.util.Objects;
|
|||||||
* @Date 2021/6/11 9:23
|
* @Date 2021/6/11 9:23
|
||||||
*/
|
*/
|
||||||
@RestController("adminShopWithdrawCashController")
|
@RestController("adminShopWithdrawCashController")
|
||||||
@RequestMapping("/mp/shop_withdraw_cash")
|
@RequestMapping("/ma/shopWithdrwaCash")
|
||||||
|
//@RequestMapping("/mp/shop_withdraw_cash")
|
||||||
@Tag(name = "admin-商家提现申请信息")
|
@Tag(name = "admin-商家提现申请信息")
|
||||||
public class ShopWithdrawCashController {
|
public class ShopWithdrawCashController {
|
||||||
|
|
||||||
|
@ -23,7 +23,8 @@ import java.util.List;
|
|||||||
* @date 2021-01-27 09:10:00
|
* @date 2021-01-27 09:10:00
|
||||||
*/
|
*/
|
||||||
@RestController("appHotSearchController")
|
@RestController("appHotSearchController")
|
||||||
@RequestMapping("/ua/app/hot_search")
|
@RequestMapping("/mua/app/hotQuery")
|
||||||
|
//@RequestMapping("/ua/app/hot_search")
|
||||||
@Tag(name = "app-热搜")
|
@Tag(name = "app-热搜")
|
||||||
public class HotSearchController {
|
public class HotSearchController {
|
||||||
|
|
||||||
|
@ -23,7 +23,8 @@ import java.util.List;
|
|||||||
* @date 2020-11-24 16:38:32
|
* @date 2020-11-24 16:38:32
|
||||||
*/
|
*/
|
||||||
@RestController("appIndexImgController")
|
@RestController("appIndexImgController")
|
||||||
@RequestMapping("/ua/index_img")
|
@RequestMapping("/mua/app/indexPic")
|
||||||
|
//@RequestMapping("/ua/index_img")
|
||||||
@Tag(name = "app-轮播图")
|
@Tag(name = "app-轮播图")
|
||||||
public class IndexImgController {
|
public class IndexImgController {
|
||||||
|
|
||||||
|
@ -36,7 +36,8 @@ import java.util.stream.Collectors;
|
|||||||
* @date 2020-11-25 17:57:56
|
* @date 2020-11-25 17:57:56
|
||||||
*/
|
*/
|
||||||
@RestController("appNoticeController")
|
@RestController("appNoticeController")
|
||||||
@RequestMapping("/ma/notice")
|
@RequestMapping("/mua/app/notice")
|
||||||
|
//@RequestMapping("/ma/notice")
|
||||||
@Tag(name = "app-公告")
|
@Tag(name = "app-公告")
|
||||||
public class NoticeController {
|
public class NoticeController {
|
||||||
|
|
||||||
|
@ -25,7 +25,8 @@ import java.util.List;
|
|||||||
* @date 2021-02-23 14:41:42
|
* @date 2021-02-23 14:41:42
|
||||||
*/
|
*/
|
||||||
@RestController("appUserCollectionShopController")
|
@RestController("appUserCollectionShopController")
|
||||||
@RequestMapping("/user_collection_shop")
|
@RequestMapping("/mua/app/userFavorite")
|
||||||
|
//@RequestMapping("/user_collection_shop")
|
||||||
@Tag(name = "app-用户店铺收藏记录")
|
@Tag(name = "app-用户店铺收藏记录")
|
||||||
public class ShopCollectionController {
|
public class ShopCollectionController {
|
||||||
|
|
||||||
|
@ -32,7 +32,8 @@ import java.util.Objects;
|
|||||||
* @date 2020-12-05 15:50:25
|
* @date 2020-12-05 15:50:25
|
||||||
*/
|
*/
|
||||||
@RestController("appShopDetailController")
|
@RestController("appShopDetailController")
|
||||||
@RequestMapping("/ua/shop_detail")
|
@RequestMapping("/mua/app/shopDetail")
|
||||||
|
//@RequestMapping("/ua/shop_detail")
|
||||||
@Tag(name = "app-店铺详情")
|
@Tag(name = "app-店铺详情")
|
||||||
public class ShopDetailController {
|
public class ShopDetailController {
|
||||||
|
|
||||||
|
@ -24,7 +24,8 @@ import java.util.Objects;
|
|||||||
* @date 2022-08-12 11:27:18
|
* @date 2022-08-12 11:27:18
|
||||||
*/
|
*/
|
||||||
@RestController("appShopRenovationController")
|
@RestController("appShopRenovationController")
|
||||||
@RequestMapping("/ua/shop_renovation")
|
@RequestMapping("/mua/app/shopRenovation")
|
||||||
|
//@RequestMapping("/ua/shop_renovation")
|
||||||
@Tag(name = "app-店铺装修信息")
|
@Tag(name = "app-店铺装修信息")
|
||||||
public class ShopRenovationController {
|
public class ShopRenovationController {
|
||||||
private static final Logger logger = LoggerFactory.getLogger(ShopRenovationController.class);
|
private static final Logger logger = LoggerFactory.getLogger(ShopRenovationController.class);
|
||||||
|
@ -27,7 +27,8 @@ import java.util.Objects;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/5/12 20:27
|
* @Date 2021/5/12 20:27
|
||||||
*/
|
*/
|
||||||
@RequestMapping("/m/apply_shop/shop_user")
|
@RequestMapping("/mm/apply/shopUser")
|
||||||
|
//@RequestMapping("/m/apply_shop/shop_user")
|
||||||
@RestController("multishopShopUserController")
|
@RestController("multishopShopUserController")
|
||||||
@Tag(name = "multishop-店铺用户信息")
|
@Tag(name = "multishop-店铺用户信息")
|
||||||
public class ApplyShopUserController {
|
public class ApplyShopUserController {
|
||||||
|
@ -22,7 +22,8 @@ import java.util.Objects;
|
|||||||
* @date 2022/9/13 14:06
|
* @date 2022/9/13 14:06
|
||||||
*/
|
*/
|
||||||
@RestController("multishopCompanyAuditingController")
|
@RestController("multishopCompanyAuditingController")
|
||||||
@RequestMapping("/m/shop_company_auditing")
|
@RequestMapping("/mm/apply/shopAuditing")
|
||||||
|
//@RequestMapping("/m/shop_company_auditing")
|
||||||
@Tag(name = "multishop-店铺变更工商信息")
|
@Tag(name = "multishop-店铺变更工商信息")
|
||||||
public class CompanyAuditingController {
|
public class CompanyAuditingController {
|
||||||
|
|
||||||
|
@ -29,7 +29,8 @@ import java.util.Objects;
|
|||||||
* @author person
|
* @author person
|
||||||
*/
|
*/
|
||||||
@RestController("multishopShopApplyController")
|
@RestController("multishopShopApplyController")
|
||||||
@RequestMapping("/m/apply_shop/shop_apply")
|
@RequestMapping("/mm/apply/shopApply")
|
||||||
|
//@RequestMapping("/m/apply_shop/shop_apply")
|
||||||
@Tag(name = "multishop-店铺申请")
|
@Tag(name = "multishop-店铺申请")
|
||||||
public class ShopApplyController {
|
public class ShopApplyController {
|
||||||
|
|
||||||
|
@ -30,7 +30,8 @@ import java.util.Objects;
|
|||||||
* @author lth
|
* @author lth
|
||||||
*/
|
*/
|
||||||
@RestController("multishopShopBankCardController")
|
@RestController("multishopShopBankCardController")
|
||||||
@RequestMapping("/m/apply_shop/shop_bank_card")
|
@RequestMapping("/mm/apply/shopBankCard")
|
||||||
|
//@RequestMapping("/m/apply_shop/shop_bank_card")
|
||||||
@Tag(name = "multishop-店铺银行卡信息")
|
@Tag(name = "multishop-店铺银行卡信息")
|
||||||
public class ShopBankCardController {
|
public class ShopBankCardController {
|
||||||
|
|
||||||
|
@ -34,7 +34,8 @@ import java.util.Objects;
|
|||||||
* @Date 2021/4/25 16:31
|
* @Date 2021/4/25 16:31
|
||||||
*/
|
*/
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/m/apply_shop/shop_company")
|
@RequestMapping("/mm/apply/shopCompany")
|
||||||
|
//@RequestMapping("/m/apply_shop/shop_company")
|
||||||
@Tag(name = "multishop-店铺工商信息")
|
@Tag(name = "multishop-店铺工商信息")
|
||||||
public class ShopCompanyController {
|
public class ShopCompanyController {
|
||||||
|
|
||||||
|
@ -31,7 +31,8 @@ import java.util.Objects;
|
|||||||
* @author lth
|
* @author lth
|
||||||
*/
|
*/
|
||||||
@RestController("multishopShopDetailController")
|
@RestController("multishopShopDetailController")
|
||||||
@RequestMapping("/m/apply_shop/shop_detail")
|
@RequestMapping("/mm/apply/shoDetail")
|
||||||
|
//@RequestMapping("/m/apply_shop/shop_detail")
|
||||||
@Tag(name = "multishop-店铺信息")
|
@Tag(name = "multishop-店铺信息")
|
||||||
public class ShopDetailController {
|
public class ShopDetailController {
|
||||||
|
|
||||||
|
@ -33,7 +33,8 @@ import java.util.Objects;
|
|||||||
* @author chiley
|
* @author chiley
|
||||||
*/
|
*/
|
||||||
@RestController("multishopRechargeController")
|
@RestController("multishopRechargeController")
|
||||||
@RequestMapping("/m/shop_recharge")
|
@RequestMapping("/mm/shopCharge")
|
||||||
|
//@RequestMapping("/m/shop_recharge")
|
||||||
@Tag(name = "multishop-商家余额充值")
|
@Tag(name = "multishop-商家余额充值")
|
||||||
public class ShopRechargeController {
|
public class ShopRechargeController {
|
||||||
|
|
||||||
|
@ -23,7 +23,8 @@ import java.util.Objects;
|
|||||||
* @date 2022-06-22 17:09:12
|
* @date 2022-06-22 17:09:12
|
||||||
*/
|
*/
|
||||||
@RestController("multishopShopSubstituteSalesController")
|
@RestController("multishopShopSubstituteSalesController")
|
||||||
@RequestMapping("/m/shop_substitute_sales")
|
@RequestMapping("/mm/shopSaleAgent")
|
||||||
|
//@RequestMapping("/m/shop_substitute_sales")
|
||||||
@Tag(name = "代销设置表")
|
@Tag(name = "代销设置表")
|
||||||
public class ShopSubstituteSalesController {
|
public class ShopSubstituteSalesController {
|
||||||
|
|
||||||
|
@ -38,7 +38,8 @@ import java.util.Objects;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
* @date 2020/09/02
|
* @date 2020/09/02
|
||||||
*/
|
*/
|
||||||
@RequestMapping("/m/shop_user")
|
@RequestMapping("/mm/shopUser")
|
||||||
|
//@RequestMapping("/m/shop_user")
|
||||||
@RestController
|
@RestController
|
||||||
@Tag(name = "店铺用户信息")
|
@Tag(name = "店铺用户信息")
|
||||||
public class ShopUserController {
|
public class ShopUserController {
|
||||||
|
@ -21,7 +21,8 @@ import java.util.Objects;
|
|||||||
* @author lth
|
* @author lth
|
||||||
*/
|
*/
|
||||||
@RestController("multishopShopUserRegisterController")
|
@RestController("multishopShopUserRegisterController")
|
||||||
@RequestMapping("/ua/shop_user_register")
|
@RequestMapping("/mm/shopUserRegister")
|
||||||
|
//@RequestMapping("/ua/shop_user_register")
|
||||||
@Tag(name = "multishop-商家注册")
|
@Tag(name = "multishop-商家注册")
|
||||||
public class ShopUserRegisterController {
|
public class ShopUserRegisterController {
|
||||||
|
|
||||||
|
@ -21,7 +21,8 @@ import java.util.Objects;
|
|||||||
* @author tmerclub
|
* @author tmerclub
|
||||||
*/
|
*/
|
||||||
@RestController("multishopShopWithdrawCashController")
|
@RestController("multishopShopWithdrawCashController")
|
||||||
@RequestMapping("/m/shop_withdraw_cash")
|
@RequestMapping("/mm/shopWithdrawalApply")
|
||||||
|
//@RequestMapping("/m/shop_withdraw_cash")
|
||||||
@Tag(name = "multishop-商家提现申请信息")
|
@Tag(name = "multishop-商家提现申请信息")
|
||||||
public class ShopWithdrawCashController {
|
public class ShopWithdrawCashController {
|
||||||
|
|
||||||
|
@ -40,7 +40,8 @@ import java.util.Objects;
|
|||||||
* @date 2021-02-01 17:10:35
|
* @date 2021-02-01 17:10:35
|
||||||
*/
|
*/
|
||||||
@RestController("platformShopAuditingController")
|
@RestController("platformShopAuditingController")
|
||||||
@RequestMapping("/p/shop_auditing")
|
@RequestMapping("/mup/platformAuditing")
|
||||||
|
//@RequestMapping("/p/shop_auditing")
|
||||||
@Tag(name = "platform-平台审核信息")
|
@Tag(name = "platform-平台审核信息")
|
||||||
public class ShopAuditingController {
|
public class ShopAuditingController {
|
||||||
|
|
||||||
|
@ -27,7 +27,8 @@ import java.util.Objects;
|
|||||||
* @Date 2021/4/26 10:09
|
* @Date 2021/4/26 10:09
|
||||||
*/
|
*/
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/p/shop_bank_card")
|
@RequestMapping("/mup/shopBankCard")
|
||||||
|
//@RequestMapping("/p/shop_bank_card")
|
||||||
@Tag(name = "platform-店铺银行卡信息")
|
@Tag(name = "platform-店铺银行卡信息")
|
||||||
public class ShopBankCardController {
|
public class ShopBankCardController {
|
||||||
|
|
||||||
|
@ -28,7 +28,8 @@ import java.util.Objects;
|
|||||||
* @author lth
|
* @author lth
|
||||||
*/
|
*/
|
||||||
@RestController("platformShopCompanyController")
|
@RestController("platformShopCompanyController")
|
||||||
@RequestMapping("/p/shop_company")
|
@RequestMapping("/mup/shopInfo")
|
||||||
|
//@RequestMapping("/p/shop_company")
|
||||||
@Tag(name = "platform-商家工商信息")
|
@Tag(name = "platform-商家工商信息")
|
||||||
public class ShopCompanyController {
|
public class ShopCompanyController {
|
||||||
|
|
||||||
|
@ -40,7 +40,8 @@ import java.util.Objects;
|
|||||||
* @date 2020-12-05 15:50:25
|
* @date 2020-12-05 15:50:25
|
||||||
*/
|
*/
|
||||||
@RestController("platformShopDetailController")
|
@RestController("platformShopDetailController")
|
||||||
@RequestMapping("/p/shop_detail")
|
@RequestMapping("/mup/shopDetail")
|
||||||
|
//@RequestMapping("/p/shop_detail")
|
||||||
@Tag(name = "platform-店铺信息")
|
@Tag(name = "platform-店铺信息")
|
||||||
public class ShopDetailController {
|
public class ShopDetailController {
|
||||||
|
|
||||||
|
@ -17,7 +17,8 @@ import org.springframework.web.bind.annotation.*;
|
|||||||
* @Date 2021/6/11 9:28
|
* @Date 2021/6/11 9:28
|
||||||
*/
|
*/
|
||||||
@RestController("platformShopWithdrawCashController")
|
@RestController("platformShopWithdrawCashController")
|
||||||
@RequestMapping("/p/shop_withdraw_cash")
|
@RequestMapping("/mup/shopWithdrawalApply")
|
||||||
|
//@RequestMapping("/p/shop_withdraw_cash")
|
||||||
@Tag(name = "platform-商家提现申请信息")
|
@Tag(name = "platform-商家提现申请信息")
|
||||||
public class ShopWithdrawCashController {
|
public class ShopWithdrawCashController {
|
||||||
|
|
||||||
|
@ -25,7 +25,8 @@ import java.util.Objects;
|
|||||||
* @Author lth
|
* @Author lth
|
||||||
* @Date 2021/5/12 20:27
|
* @Date 2021/5/12 20:27
|
||||||
*/
|
*/
|
||||||
@RequestMapping("/s/apply_shop/shop_user")
|
@RequestMapping("/mus/shopUser")
|
||||||
|
//@RequestMapping("/s/apply_shop/shop_user")
|
||||||
@RestController("supplierShopUserController")
|
@RestController("supplierShopUserController")
|
||||||
@Tag(name = "supplier-店铺用户信息")
|
@Tag(name = "supplier-店铺用户信息")
|
||||||
public class ApplyShopUserController {
|
public class ApplyShopUserController {
|
||||||
|
@ -27,5 +27,8 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11112}
|
port: ${tmerclub_DUBBO_PORT:11112}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
|
||||||
|
@ -27,10 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${TMERCLUB_DUBBO_PORT:11101}
|
port: ${TMERCLUB_DUBBO_PORT:11101}
|
||||||
# host: ${spring.cloud.nacos.discovery.ip}
|
|
||||||
consumer:
|
consumer:
|
||||||
loadbalance: dev
|
loadbalance: dev
|
||||||
# registry:
|
registry:
|
||||||
# address: nacos://${spring.cloud.nacos.discovery.server-addr}
|
group: dubbo-default
|
||||||
# parameters:
|
|
||||||
# namespace: ${spring.cloud.nacos.discovery.namespace}
|
|
||||||
|
@ -28,4 +28,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${TMERCLUB_DUBBO_PORT:11118}
|
port: ${TMERCLUB_DUBBO_PORT:11118}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -27,4 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${TMERCLUB_DUBBO_PORT:11116}
|
port: ${TMERCLUB_DUBBO_PORT:11116}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -27,4 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11114}
|
port: ${tmerclub_DUBBO_PORT:11114}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -27,4 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11120}
|
port: ${tmerclub_DUBBO_PORT:11120}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -27,4 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11109}
|
port: ${tmerclub_DUBBO_PORT:11109}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -27,4 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11106}
|
port: ${tmerclub_DUBBO_PORT:11106}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -27,4 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11113}
|
port: ${tmerclub_DUBBO_PORT:11113}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -33,4 +33,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11104}
|
port: ${tmerclub_DUBBO_PORT:11104}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -27,4 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11108}
|
port: ${tmerclub_DUBBO_PORT:11108}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -27,4 +27,7 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11115}
|
port: ${tmerclub_DUBBO_PORT:11115}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
@ -34,5 +34,8 @@ logging:
|
|||||||
dubbo:
|
dubbo:
|
||||||
protocol:
|
protocol:
|
||||||
port: ${tmerclub_DUBBO_PORT:11105}
|
port: ${tmerclub_DUBBO_PORT:11105}
|
||||||
host: ${spring.cloud.nacos.discovery.ip}
|
consumer:
|
||||||
|
loadbalance: dev
|
||||||
|
registry:
|
||||||
|
group: dubbo-default
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user