记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
3d125cee
Commit
3d125cee
authored
Mar 09, 2022
by
anjiabin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化galaxy项目
parent
687232f9
Changes
20
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
22 additions
and
1693 deletions
+22
-1693
GalaxyErrorCodeEnum.java
...iquidnet/service/galaxy/constant/GalaxyErrorCodeEnum.java
+2
-29
pom.xml
...dnet-service-galaxy/liquidnet-service-galaxy-impl/pom.xml
+5
-0
GalaxyRouterStrategyListener.java
.../galaxy/router/strategy/GalaxyRouterStrategyListener.java
+5
-5
StrategyGalaxyRouterHandler.java
...uter/strategy/annotation/StrategyGalaxyRouterHandler.java
+4
-2
GalaxyRouterStrategyEthImpl.java
...axy/router/strategy/impl/GalaxyRouterStrategyEthImpl.java
+3
-9
GalaxyRouterStrategyZxlImpl.java
...axy/router/strategy/impl/GalaxyRouterStrategyZxlImpl.java
+3
-29
pom.xml
...iquidnet-service-meta/liquidnet-service-meta-impl/pom.xml
+0
-34
ServiceZxlnftApplication.java
.../java/com/liquidnet/service/ServiceZxlnftApplication.java
+0
-43
bootstrap-dev.yml
...et-service-meta-impl/src/main/resources/bootstrap-dev.yml
+0
-14
bootstrap-prod.yml
...t-service-meta-impl/src/main/resources/bootstrap-prod.yml
+0
-14
bootstrap-service-zxlnft.yml
...meta-impl/src/main/resources/bootstrap-service-zxlnft.yml
+0
-19
bootstrap-test.yml
...t-service-meta-impl/src/main/resources/bootstrap-test.yml
+0
-18
bootstrap.yml
...uidnet-service-meta-impl/src/main/resources/bootstrap.yml
+0
-5
errors.properties
...et-service-meta-impl/src/main/resources/errors.properties
+0
-4
sqlmap.properties
...et-service-meta-impl/src/main/resources/sqlmap.properties
+0
-0
TestZxlWalletSdkUtil.java
...va/com/liquidnet/service/zxlnft/TestZxlWalletSdkUtil.java
+0
-236
TestZxlnftBiz.java
...test/java/com/liquidnet/service/zxlnft/TestZxlnftBiz.java
+0
-42
TestZxlnftSdkUtil.java
.../java/com/liquidnet/service/zxlnft/TestZxlnftSdkUtil.java
+0
-808
TestZxlnftService.java
.../java/com/liquidnet/service/zxlnft/TestZxlnftService.java
+0
-354
pom.xml
liquidnet-bus-service/liquidnet-service-meta/pom.xml
+0
-28
No files found.
liquidnet-bus-api/liquidnet-service-galaxy-api/src/main/java/com/liquidnet/service/galaxy/constant/GalaxyErrorCodeEnum.java
View file @
3d125cee
...
...
@@ -10,38 +10,11 @@ package com.liquidnet.service.galaxy.constant;
* @date 2022/3/8 11:25
*/
public
enum
GalaxyErrorCodeEnum
{
TRADE_PAY_WAY_ERROR
(
"PAY0010001"
,
"错误的支付方式"
),
TRADE_WEIXIN_ERROR
(
"PAY0010002"
,
"微信异常"
),
TRADE_ORDER_ERROR
(
"PAY0010003"
,
"错误的支付方式"
),
TRADE_ORDER_STATUS_NOT_SUCCESS
(
"PAY0010004"
,
"交易不成功"
),
TRADE_ALIPAY_ERROR
(
"PAY0010005"
,
"支付宝异常"
),
TRADE_PARAM_ERROR
(
"PAY0010006"
,
"支付参数异常"
),
TRADE_ERROR_NOT_EXISTS
(
"PAY0010007"
,
"订单不存在!"
),
TRADE_ERROR_HAS_PAID
(
"PAY0010008"
,
"订单已经支付成功!"
),
TRADE_ALIPAY_SIGN_ERROR
(
"PAY0010009"
,
"支付宝签名异常!"
),
TRADE_ALIPAY_QUERY_ERROR
(
"PAY0010010"
,
"支付宝订单查询失败!"
),
TRADE_UNIONPAY_QUERY_ERROR
(
"PAY0040002"
,
"银联订单查询失败,因缓存消失,查询不到订单导致!"
),
TRADE_WEPAY_SIGN_ERROR
(
"PAY0020001"
,
"微信签名异常!"
),
TRADE_DOUYINPAY_SIGN_ERROR
(
"PAY0030001"
,
"抖音签名异常!"
),
TRADE_DOUYINPAY_QUERY_ERROR
(
"PAY0030002"
,
"抖音查询支付订单异常!"
),
TRADE_UNIONPAY_SIGN_ERROR
(
"PAY0040001"
,
"银联签名异常!"
),
TRADE_WEPAY_QUERY_ERROR
(
"PAY0020002"
,
"微信订单查询失败!"
);
TRADE_PAY_WAY_ERROR
(
"PAY0010001"
,
"错误的支付方式"
);
private
String
code
;
private
String
message
;
Dragon
ErrorCodeEnum
(
String
code
,
String
message
)
{
Galaxy
ErrorCodeEnum
(
String
code
,
String
message
)
{
this
.
code
=
code
;
this
.
message
=
message
;
}
...
...
liquidnet-bus-service/liquidnet-service-galaxy/liquidnet-service-galaxy-impl/pom.xml
View file @
3d125cee
...
...
@@ -21,6 +21,11 @@
<artifactId>
liquidnet-common-third-zxlnft
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-service-galaxy-api
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
</dependencies>
<build>
...
...
liquidnet-bus-service/liquidnet-service-galaxy/liquidnet-service-galaxy-impl/src/main/java/com/liquidnet/service/galaxy/router/strategy/GalaxyRouterStrategyListener.java
View file @
3d125cee
package
com
.
liquidnet
.
service
.
galaxy
.
router
.
strategy
;
import
com.liquidnet.service.galaxy.router.strategy.annotation.Strategy
PayChannel
Handler
;
import
com.liquidnet.service.galaxy.router.strategy.annotation.Strategy
GalaxyRouter
Handler
;
import
org.springframework.context.ApplicationListener
;
import
org.springframework.context.event.ContextRefreshedEvent
;
import
org.springframework.stereotype.Component
;
...
...
@@ -20,11 +20,11 @@ import java.util.Map;
public
class
GalaxyRouterStrategyListener
implements
ApplicationListener
<
ContextRefreshedEvent
>
{
@Override
public
void
onApplicationEvent
(
ContextRefreshedEvent
event
)
{
Map
<
String
,
Object
>
beans
=
event
.
getApplicationContext
().
getBeansWithAnnotation
(
Strategy
PayChannel
Handler
.
class
);
GalaxyRouterStrategyContext
strategyContext
=
event
.
getApplicationContext
().
getBean
(
PayChannel
StrategyContext
.
class
);
Map
<
String
,
Object
>
beans
=
event
.
getApplicationContext
().
getBeansWithAnnotation
(
Strategy
GalaxyRouter
Handler
.
class
);
GalaxyRouterStrategyContext
strategyContext
=
event
.
getApplicationContext
().
getBean
(
GalaxyRouter
StrategyContext
.
class
);
beans
.
forEach
((
name
,
bean
)
->
{
Strategy
PayChannelHandler
typeHandler
=
bean
.
getClass
().
getAnnotation
(
StrategyPayChannel
Handler
.
class
);
strategyContext
.
putStrategy
(
typeHandler
.
value
().
getCode
(),
(
I
PayChannel
Strategy
)
bean
);
Strategy
GalaxyRouterHandler
typeHandler
=
bean
.
getClass
().
getAnnotation
(
StrategyGalaxyRouter
Handler
.
class
);
strategyContext
.
putStrategy
(
typeHandler
.
value
().
getCode
(),
(
I
GalaxyRouter
Strategy
)
bean
);
});
}
}
liquidnet-bus-service/liquidnet-service-galaxy/liquidnet-service-galaxy-impl/src/main/java/com/liquidnet/service/galaxy/router/strategy/annotation/StrategyGalaxyRouterHandler.java
View file @
3d125cee
package
com
.
liquidnet
.
service
.
galaxy
.
router
.
strategy
.
annotation
;
import
com.liquidnet.service.galaxy.constant.GalaxyConstant
;
import
java.lang.annotation.*
;
/**
...
...
@@ -15,6 +17,6 @@ import java.lang.annotation.*;
@Inherited
@Target
(
ElementType
.
TYPE
)
@Retention
(
RetentionPolicy
.
RUNTIME
)
public
interface
StrategyGalaxyRouterHandler
{
GalaxyC
.
PayChannel
Enum
value
();
public
@
interface
StrategyGalaxyRouterHandler
{
GalaxyC
onstant
.
Router
Enum
value
();
}
liquidnet-bus-service/liquidnet-service-galaxy/liquidnet-service-galaxy-impl/src/main/java/com/liquidnet/service/galaxy/router/strategy/impl/GalaxyRouterStrategyEthImpl.java
View file @
3d125cee
package
com
.
liquidnet
.
service
.
galaxy
.
router
.
strategy
.
impl
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.dragon.channel.strategy.annotation.StrategyPayChannelHandler
;
import
com.liquidnet.service.dragon.constant.DragonConstant
;
import
com.liquidnet.service.dragon.dto.DragonPayBaseReqDto
;
import
com.liquidnet.service.dragon.dto.DragonPayBaseRespDto
;
import
com.liquidnet.service.dragon.dto.DragonPayOrderQueryRespDto
;
import
com.liquidnet.service.galaxy.constant.GalaxyConstant
;
import
com.liquidnet.service.galaxy.router.strategy.annotation.StrategyGalaxyRouterHandler
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.stereotype.Component
;
import
javax.servlet.http.HttpServletRequest
;
/**
* @author AnJiabin <anjiabin@zhengzai.tv>
* @version V1.0
...
...
@@ -22,7 +16,7 @@ import javax.servlet.http.HttpServletRequest;
*/
@Slf4j
@Component
@Strategy
PayChannelHandler
(
DragonConstant
.
PayChannelEnum
.
APPLEPAY
)
@Strategy
GalaxyRouterHandler
(
GalaxyConstant
.
RouterEnum
.
ETH
)
public
class
GalaxyRouterStrategyEthImpl
extends
AbstractGalaxyRouterStrategyImpl
{
// @Override
...
...
liquidnet-bus-service/liquidnet-service-galaxy/liquidnet-service-galaxy-impl/src/main/java/com/liquidnet/service/galaxy/router/strategy/impl/GalaxyRouterStrategyZxlImpl.java
View file @
3d125cee
package
com
.
liquidnet
.
service
.
galaxy
.
router
.
strategy
.
impl
;
import
com.alibaba.fastjson.JSON
;
import
com.alipay.api.AlipayApiException
;
import
com.alipay.api.internal.util.AlipaySignature
;
import
com.liquidnet.common.exception.LiquidnetServiceException
;
import
com.liquidnet.commons.lang.util.DateUtil
;
import
com.liquidnet.commons.lang.util.StringUtil
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.dragon.biz.DragonServiceCommonBiz
;
import
com.liquidnet.service.dragon.channel.alipay.biz.AlipayBiz
;
import
com.liquidnet.service.dragon.channel.alipay.constant.AlipayConstant
;
import
com.liquidnet.service.dragon.channel.alipay.strategy.AlipayStrategyContext
;
import
com.liquidnet.service.dragon.channel.strategy.annotation.StrategyPayChannelHandler
;
import
com.liquidnet.service.dragon.channel.strategy.biz.DragonPayBiz
;
import
com.liquidnet.service.dragon.constant.DragonConstant
;
import
com.liquidnet.service.dragon.constant.DragonErrorCodeEnum
;
import
com.liquidnet.service.dragon.dto.DragonOrdersDto
;
import
com.liquidnet.service.dragon.dto.DragonPayBaseReqDto
;
import
com.liquidnet.service.dragon.dto.DragonPayBaseRespDto
;
import
com.liquidnet.service.dragon.dto.DragonPayOrderQueryRespDto
;
import
com.liquidnet.service.dragon.service.impl.DragonOrderRefundsServiceImpl
;
import
com.liquidnet.service.dragon.utils.DataUtils
;
import
com.liquidnet.service.galaxy.constant.GalaxyConstant
;
import
com.liquidnet.service.galaxy.router.strategy.annotation.StrategyGalaxyRouterHandler
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.stereotype.Component
;
import
javax.servlet.http.HttpServletRequest
;
import
java.time.LocalDateTime
;
import
java.util.HashMap
;
import
java.util.Map
;
/**
* @author AnJiabin <anjiabin@zhengzai.tv>
* @version V1.0
...
...
@@ -42,7 +16,7 @@ import java.util.Map;
*/
@Slf4j
@Component
@Strategy
PayChannelHandler
(
DragonConstant
.
PayChannelEnum
.
ALIPAY
)
@Strategy
GalaxyRouterHandler
(
GalaxyConstant
.
RouterEnum
.
ZXINCHAIN
)
public
class
GalaxyRouterStrategyZxlImpl
extends
AbstractGalaxyRouterStrategyImpl
{
// @Autowired
// private AlipayStrategyContext alipayStrategyContext;
...
...
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/pom.xml
deleted
100644 → 0
View file @
687232f9
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<artifactId>
liquidnet-service-zxlnft
</artifactId>
<groupId>
com.liquidnet
</groupId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
liquidnet-service-zxlnft-impl
</artifactId>
<dependencies>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-data-mongodb
</artifactId>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-common-third-zxlnft
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
</project>
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/main/java/com/liquidnet/service/ServiceZxlnftApplication.java
deleted
100644 → 0
View file @
687232f9
package
com
.
liquidnet
.
service
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.CommandLineRunner
;
import
org.springframework.boot.SpringApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
import
org.springframework.cloud.openfeign.EnableFeignClients
;
import
org.springframework.core.env.Environment
;
import
java.net.InetAddress
;
import
java.util.Arrays
;
@Slf4j
@EnableFeignClients
@SpringBootApplication
(
scanBasePackages
=
{
"com.liquidnet"
})
public
class
ServiceZxlnftApplication
implements
CommandLineRunner
{
@Autowired
private
Environment
environment
;
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
ServiceZxlnftApplication
.
class
,
args
);
}
@Override
public
void
run
(
String
...
strings
)
{
try
{
log
.
info
(
"\n----------------------------------------------------------\n\t"
+
"Application '{}' is running! Access URLs:\n\t"
+
"Local: \t\thttp://127.0.0.1:{}\n\t"
+
"External: \thttp://{}:{}{}/doc.html\n\t"
+
"Profile(s): \t{}\n----------------------------------------------------------"
,
environment
.
getProperty
(
"spring.application.name"
),
environment
.
getProperty
(
"server.port"
),
InetAddress
.
getLocalHost
().
getHostAddress
(),
environment
.
getProperty
(
"server.port"
),
environment
.
getProperty
(
"server.servlet.context-path"
),
Arrays
.
toString
(
environment
.
getActiveProfiles
()));
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
}
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/main/resources/bootstrap-dev.yml
deleted
100644 → 0
View file @
687232f9
# begin-dev-这里是配置信息基本值
liquidnet
:
cloudConfig
:
profile
:
dev
security
:
username
:
user
password
:
user123
eureka
:
host
:
127.0.0.1:7001
# end-dev-这里是配置信息基本值
spring
:
profiles
:
include
:
service-zxlnft
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/main/resources/bootstrap-prod.yml
deleted
100644 → 0
View file @
687232f9
# begin-dev-这里是配置信息基本值
liquidnet
:
cloudConfig
:
profile
:
prod
security
:
username
:
user
password
:
user123
eureka
:
host
:
172.17.207.189:7001
# end-dev-这里是配置信息基本值
spring
:
profiles
:
include
:
service-zxlnft
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/main/resources/bootstrap-service-zxlnft.yml
deleted
100644 → 0
View file @
687232f9
#eurekaServer配置
eureka
:
client
:
register-with-eureka
:
false
fetch-registry
:
true
serviceUrl
:
defaultZone
:
http://${liquidnet.security.username}:${liquidnet.security.password}@${liquidnet.eureka.host}/eureka-server/eureka
#configServer配置
spring
:
cloud
:
config
:
# uri: http://39.105.38.151:7002/support-config
# uri: http://39.106.122.201:7002/support-config
# uri: http://127.0.0.1:7002/support-config
profile
:
${liquidnet.cloudConfig.profile}
name
:
${spring.application.name}
#默认为spring.application.name
discovery
:
enabled
:
true
service-id
:
liquidnet-support-config
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/main/resources/bootstrap-test.yml
deleted
100644 → 0
View file @
687232f9
# begin-dev-这里是配置信息基本值
liquidnet
:
cloudConfig
:
profile
:
test
security
:
username
:
user
password
:
user123
eureka
:
host
:
172.17.207.177:7001
#instance:
# prefer-ip-address: true
#host: eureka-test-0.eureka-test-svc.zhengzai-test:7001/eureka-server/eureka,eureka-test-1.eureka-test-svc.zhengzai-test:7001/eureka-server/eureka,eureka-test-2.eureka-test-svc.zhengzai-test:7001/eureka-server/eureka
#host: 192.168.193.41:7001
# end-dev-这里是配置信息基本值
spring
:
profiles
:
include
:
service-zxlnft
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/main/resources/bootstrap.yml
deleted
100644 → 0
View file @
687232f9
spring
:
application
:
name
:
liquidnet-service-zxlnft
profiles
:
active
:
dev
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/main/resources/errors.properties
deleted
100644 → 0
View file @
687232f9
40001
=
登录信息有误
40002
=
账号已在另一台设备登录
40003
=
登录已过期
# ------------------------ 4开头错误码作系统保留
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/main/resources/sqlmap.properties
deleted
100644 → 0
View file @
687232f9
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/test/java/com/liquidnet/service/zxlnft/TestZxlWalletSdkUtil.java
deleted
100644 → 0
View file @
687232f9
This diff is collapsed.
Click to expand it.
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/test/java/com/liquidnet/service/zxlnft/TestZxlnftBiz.java
deleted
100644 → 0
View file @
687232f9
package
com
.
liquidnet
.
service
.
zxlnft
;
import
com.liquidnet.common.third.zxlnft.biz.ZxlnftBiz
;
import
lombok.extern.slf4j.Slf4j
;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.test.context.junit4.SpringJUnit4ClassRunner
;
import
org.springframework.util.LinkedMultiValueMap
;
import
org.springframework.util.MultiValueMap
;
/**
* @author AnJiabin <anjiabin@zhengzai.tv>
* @version V1.0
* @Description: TODO
* @class: TestZxlnftBiz
* @Package com.liquidnet.service.zxlnft.test
* @Copyright: LightNet @ Copyright (c) 2021
* @date 2022/2/21 11:44
*/
@Slf4j
@RunWith
(
SpringJUnit4ClassRunner
.
class
)
@SpringBootTest
public
class
TestZxlnftBiz
{
@Autowired
private
ZxlnftBiz
zxlnftBiz
;
@Test
public
void
buildHeader
(){
MultiValueMap
<
String
,
String
>
commonHeader
=
new
LinkedMultiValueMap
();
zxlnftBiz
.
buildHeader
(
commonHeader
);
System
.
out
.
println
(
commonHeader
.
toString
());
}
@Test
public
void
buildPlatFormHeader
(){
MultiValueMap
<
String
,
String
>
commonHeader
=
new
LinkedMultiValueMap
();
zxlnftBiz
.
buildPlatFormHeader
(
commonHeader
);
System
.
out
.
println
(
commonHeader
.
toString
());
}
}
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/test/java/com/liquidnet/service/zxlnft/TestZxlnftSdkUtil.java
deleted
100644 → 0
View file @
687232f9
This diff is collapsed.
Click to expand it.
liquidnet-bus-service/liquidnet-service-meta/liquidnet-service-meta-impl/src/test/java/com/liquidnet/service/zxlnft/TestZxlnftService.java
deleted
100644 → 0
View file @
687232f9
This diff is collapsed.
Click to expand it.
liquidnet-bus-service/liquidnet-service-meta/pom.xml
deleted
100644 → 0
View file @
687232f9
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<parent>
<artifactId>
liquidnet-bus-service
</artifactId>
<groupId>
com.liquidnet
</groupId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
liquidnet-service-zxlnft
</artifactId>
<packaging>
pom
</packaging>
<modules>
<module>
liquidnet-service-zxlnft-impl
</module>
</modules>
<dependencies>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-common-swagger
</artifactId>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-common-web
</artifactId>
</dependency>
</dependencies>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment