Commit 8b0fe386 by lixian7

Merge remote-tracking branch 'origin/feature-20200720' into feature-20200720

parents aefce72f d9ed238c
......@@ -92,6 +92,10 @@
<artifactId>sdk</artifactId>
<version>${parent.version}</version>
</dependency>
<dependency>
<groupId>com.hikcreate.edl.common</groupId>
<artifactId>image-builder</artifactId>
</dependency>
</dependencies>
</project>
package com.hikcreate.edl.pub.web.mobile.infra.core.config;
import com.hikcreate.edl.common.image.builder.refactor.material.DlMaterial;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author 赵东
* @date 2019/7/8 10:25
*/
@Configuration
public class DrawConfig {
@Bean
@ConfigurationProperties("biz.image.builder.dl")
public DlMaterial dlMaterial() {
return new DlMaterial();
}
}
package com.hikcreate.edl.pub.web.mobile.infra.data.feign.edl_pvt_service_drivinglicense;
/**
*
*/
//@FeignClient(value = "edl-pvt-service-dl", path = "drivingLicense/qr")
public interface DrivingLicenseQrFeign {
// @PostMapping("getQrInfo")
// Response<DlQrRes> getQrInfo(@RequestBody @Validated IdCardMicReq req);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment