@MapperScan(basePackages = {"com.zscat.*.dao","com.zscat.*.*.dao"})
@EnableTransactionManagement(proxyTargetClass = true)
@SpringBootApplication
@MapperScan(basePackages = {"com.zscat.*.dao","com.zscat.*.*.dao"})
public class ShopServiceApplication {
public static void main(String[] args) {
SpringApplication application = new SpringApplication(ShopServiceApplication.class);
application.run(args);
}
}