Files
jsowell-charger-web/jsowell-admin/src/main/java/com/jsowell/api/thirdparty/NingXiaController.java

23 lines
686 B
Java
Raw Normal View History

2024-05-10 15:46:01 +08:00
package com.jsowell.api.thirdparty;
import com.jsowell.common.annotation.Anonymous;
import com.jsowell.thirdparty.platform.service.ThirdPartyPlatformService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 宁夏平台Controller
*/
@Anonymous
@RestController
@RequestMapping("/ningxia")
public class NingXiaController extends ThirdPartyBaseController {
@Autowired
@Qualifier("ninaXiaPlatformServiceImpl")
private ThirdPartyPlatformService lianLianService;
}