记得上下班打卡 | 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
7ce32f65
Commit
7ce32f65
authored
Jun 28, 2021
by
anjiabin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ignore-list
parent
d6e1c4c2
Changes
13
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
819 additions
and
0 deletions
+819
-0
db_ln_adam_initialdata.sql
...net-service-platform-impl/docu/db_ln_adam_initialdata.sql
+330
-0
mongo_db_ddl-prod.sql
...iquidnet-service-platform-impl/docu/mongo_db_ddl-prod.sql
+69
-0
mongo_db_ddl.sql
...orm/liquidnet-service-platform-impl/docu/mongo_db_ddl.sql
+68
-0
pom.xml
...-service-platform/liquidnet-service-platform-impl/pom.xml
+78
-0
ServicePlatformApplication.java
...ava/com/liquidnet/service/ServicePlatformApplication.java
+54
-0
bootstrap-dev.yml
...ervice-platform-impl/src/main/resources/bootstrap-dev.yml
+14
-0
bootstrap-prod.yml
...rvice-platform-impl/src/main/resources/bootstrap-prod.yml
+14
-0
bootstrap-service-adam.yml
...atform-impl/src/main/resources/bootstrap-service-adam.yml
+17
-0
bootstrap-test.yml
...rvice-platform-impl/src/main/resources/bootstrap-test.yml
+14
-0
bootstrap.yml
...et-service-platform-impl/src/main/resources/bootstrap.yml
+5
-0
errors.properties
...ervice-platform-impl/src/main/resources/errors.properties
+72
-0
sqlmap.properties
...ervice-platform-impl/src/main/resources/sqlmap.properties
+62
-0
pom.xml
liquidnet-bus-service/liquidnet-service-platform/pom.xml
+22
-0
No files found.
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/docu/db_ln_adam_initialdata.sql
0 → 100644
View file @
7ce32f65
This diff is collapsed.
Click to expand it.
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/docu/mongo_db_ddl-prod.sql
0 → 100644
View file @
7ce32f65
use
prod_ln_scene
;
#
创建集合
db
.
createCollection
(
"AdamAddressesVo"
);
db
.
createCollection
(
"AdamCollectBaseVo"
);
db
.
createCollection
(
"AdamDisposedBaseVo"
);
db
.
createCollection
(
"AdamEntersVo"
);
db
.
createCollection
(
"AdamMemberCodeVo"
);
db
.
createCollection
(
"AdamMemberOrderVo"
);
db
.
createCollection
(
"AdamMemberPriceVo"
);
db
.
createCollection
(
"AdamMemberVo"
);
db
.
createCollection
(
"AdamRealInfoVo"
);
db
.
createCollection
(
"AdamThirdPartInfoVo"
);
db
.
createCollection
(
"AdamUserInfoVo"
);
db
.
createCollection
(
"AdamUserMemberVo"
);
#
创建索引
db
.
AdamAddressesVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamAddressesVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamCollectBaseVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamCollectBaseVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamCollectBaseVo
.
createIndex
(
{
contentId
:
"hashed"
}
);
db
.
AdamDisposedBaseVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamDisposedBaseVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamDisposedBaseVo
.
createIndex
(
{
contentId
:
"hashed"
}
);
db
.
AdamEntersVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamEntersVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamMemberCodeVo
.
createIndex
(
{
code
:
"hashed"
}
);
db
.
AdamMemberCodeVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
orderNo
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
payNo
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
memberId
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
memberPriceId
:
"hashed"
}
);
db
.
AdamMemberPriceVo
.
createIndex
(
{
memberPriceId
:
"hashed"
}
);
db
.
AdamMemberPriceVo
.
createIndex
(
{
memberId
:
"hashed"
}
);
db
.
AdamMemberPriceVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamMemberVo
.
createIndex
(
{
memberId
:
"hashed"
}
);
db
.
AdamMemberVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamRealInfoVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamRealInfoVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamRealInfoVo
.
createIndex
(
{
type
:
"hashed"
}
);
db
.
AdamThirdPartInfoVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamThirdPartInfoVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamThirdPartInfoVo
.
createIndex
(
{
platform
:
"hashed"
}
);
db
.
AdamThirdPartInfoVo
.
createIndex
(
{
openId
:
"hashed"
}
);
db
.
AdamUserInfoVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamUserInfoVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamUserInfoVo
.
createIndex
(
{
mobile
:
"hashed"
}
);
db
.
AdamUserMemberVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamUserMemberVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamUserMemberVo
.
createIndex
(
{
memberNo
:
"hashed"
}
);
#
创建分片
sh
.
enableSharding
(
"prod_ln_scene"
);
sh
.
shardCollection
(
"prod_ln_scene.AdamAddressesVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamCollectBaseVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamDisposedBaseVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamEntersVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamMemberCodeVo"
,
{
"code"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamMemberOrderVo"
,
{
"orderNo"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamMemberPriceVo"
,
{
"memberPriceId"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamMemberVo"
,
{
"memberId"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamRealInfoVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamThirdPartInfoVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamUserInfoVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"prod_ln_scene.AdamUserMemberVo"
,
{
"uid"
:
"hashed"
}
);
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/docu/mongo_db_ddl.sql
0 → 100644
View file @
7ce32f65
use
test_ln_scene
;
#
创建集合
db
.
createCollection
(
"AdamAddressesVo"
);
db
.
createCollection
(
"AdamCollectBaseVo"
);
db
.
createCollection
(
"AdamDisposedBaseVo"
);
db
.
createCollection
(
"AdamEntersVo"
);
db
.
createCollection
(
"AdamMemberCodeVo"
);
db
.
createCollection
(
"AdamMemberOrderVo"
);
db
.
createCollection
(
"AdamMemberPriceVo"
);
db
.
createCollection
(
"AdamMemberVo"
);
db
.
createCollection
(
"AdamRealInfoVo"
);
db
.
createCollection
(
"AdamThirdPartInfoVo"
);
db
.
createCollection
(
"AdamUserInfoVo"
);
db
.
createCollection
(
"AdamUserMemberVo"
);
#
创建索引
db
.
AdamAddressesVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamAddressesVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamCollectBaseVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamCollectBaseVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamCollectBaseVo
.
createIndex
(
{
contentId
:
"hashed"
}
);
db
.
AdamDisposedBaseVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamDisposedBaseVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamDisposedBaseVo
.
createIndex
(
{
contentId
:
"hashed"
}
);
db
.
AdamEntersVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamEntersVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamMemberCodeVo
.
createIndex
(
{
code
:
"hashed"
}
);
db
.
AdamMemberCodeVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
orderNo
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
payNo
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
memberId
:
"hashed"
}
);
db
.
AdamMemberOrderVo
.
createIndex
(
{
memberPriceId
:
"hashed"
}
);
db
.
AdamMemberPriceVo
.
createIndex
(
{
memberPriceId
:
"hashed"
}
);
db
.
AdamMemberPriceVo
.
createIndex
(
{
memberId
:
"hashed"
}
);
db
.
AdamMemberPriceVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamMemberVo
.
createIndex
(
{
memberId
:
"hashed"
}
);
db
.
AdamMemberVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamRealInfoVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamRealInfoVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamRealInfoVo
.
createIndex
(
{
type
:
"hashed"
}
);
db
.
AdamThirdPartInfoVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamThirdPartInfoVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamThirdPartInfoVo
.
createIndex
(
{
platform
:
"hashed"
}
);
db
.
AdamThirdPartInfoVo
.
createIndex
(
{
openId
:
"hashed"
}
);
db
.
AdamUserInfoVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamUserInfoVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamUserInfoVo
.
createIndex
(
{
mobile
:
"hashed"
}
);
db
.
AdamUserMemberVo
.
createIndex
(
{
uid
:
"hashed"
}
);
db
.
AdamUserMemberVo
.
createIndex
(
{
state
:
"hashed"
}
);
db
.
AdamUserMemberVo
.
createIndex
(
{
memberNo
:
"hashed"
}
);
#
创建分片
sh
.
enableSharding
(
"test_ln_scene"
);
sh
.
shardCollection
(
"test_ln_scene.AdamAddressesVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamCollectBaseVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamDisposedBaseVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamEntersVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamMemberCodeVo"
,
{
"code"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamMemberOrderVo"
,
{
"orderNo"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamMemberPriceVo"
,
{
"memberPriceId"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamMemberVo"
,
{
"memberId"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamRealInfoVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamThirdPartInfoVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamUserInfoVo"
,
{
"uid"
:
"hashed"
}
);
sh
.
shardCollection
(
"test_ln_scene.AdamUserMemberVo"
,
{
"uid"
:
"hashed"
}
);
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/pom.xml
0 → 100644
View file @
7ce32f65
<?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>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-service-platform
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
liquidnet-service-platform-impl
</artifactId>
<properties>
<bitwalker.version>
1.19
</bitwalker.version>
</properties>
<dependencies>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-common-swagger
</artifactId>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-common-web
</artifactId>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-common-mq
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-common-cache-redis
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-common-cache-redisson
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-service-adam-api
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
com.liquidnet
</groupId>
<artifactId>
liquidnet-api-feign-kylin
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<scope>
compile
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-data-mongodb
</artifactId>
</dependency>
<dependency>
<groupId>
com.aliyun
</groupId>
<artifactId>
aliyun-java-sdk-core
</artifactId>
</dependency>
<dependency>
<groupId>
com.aliyun
</groupId>
<artifactId>
aliyun-java-sdk-dypnsapi
</artifactId>
</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-platform/liquidnet-service-platform-impl/src/main/java/com/liquidnet/service/ServicePlatformApplication.java
0 → 100644
View file @
7ce32f65
package
com
.
liquidnet
.
service
;
import
lombok.extern.slf4j.Slf4j
;
import
org.mybatis.spring.annotation.MapperScan
;
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.context.annotation.Bean
;
import
org.springframework.core.env.Environment
;
import
org.springframework.data.mongodb.MongoDbFactory
;
import
org.springframework.data.mongodb.MongoTransactionManager
;
import
java.net.InetAddress
;
import
java.net.UnknownHostException
;
import
java.util.Arrays
;
@Slf4j
@EnableFeignClients
@MapperScan
(
basePackages
=
"com.liquidnet.service.platform.mapper"
)
@SpringBootApplication
(
scanBasePackages
=
{
"com.liquidnet"
})
public
class
ServicePlatformApplication
implements
CommandLineRunner
{
@Autowired
private
Environment
environment
;
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
ServiceAdamApplication
.
class
,
args
);
}
@Override
public
void
run
(
String
...
strings
)
throws
Exception
{
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
(
UnknownHostException
e
)
{
e
.
printStackTrace
();
}
}
// @Bean
// MongoTransactionManager transactionManager(MongoDbFactory factory){
// return new MongoTransactionManager(factory);
// }
}
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/resources/bootstrap-dev.yml
0 → 100644
View file @
7ce32f65
# begin-dev-这里是配置信息基本值
liquidnet
:
cloudConfig
:
profile
:
dev
security
:
username
:
user
password
:
user123
eureka
:
host
:
127.0.0.1:7001
# end-dev-这里是配置信息基本值
spring
:
profiles
:
include
:
service-adam
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/resources/bootstrap-prod.yml
0 → 100644
View file @
7ce32f65
# begin-prod-这里是配置信息基本值
liquidnet
:
cloudConfig
:
profile
:
prod
security
:
username
:
user
password
:
user123
eureka
:
host
:
172.17.207.189:7001
# end-prod-这里是配置信息基本值
spring
:
profiles
:
include
:
service-adam
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/resources/bootstrap-service-adam.yml
0 → 100644
View file @
7ce32f65
#eurekaServer配置
eureka
:
client
:
register-with-eureka
:
true
fetch-registry
:
true
serviceUrl
:
defaultZone
:
http://${liquidnet.security.username}:${liquidnet.security.password}@${liquidnet.eureka.host}/eureka-server/eureka
#configServer配置
spring
:
cloud
:
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
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/resources/bootstrap-test.yml
0 → 100644
View file @
7ce32f65
# begin-test-这里是配置信息基本值
liquidnet
:
cloudConfig
:
profile
:
test
security
:
username
:
user
password
:
user123
eureka
:
host
:
172.17.207.177:7001
# end-test-这里是配置信息基本值
spring
:
profiles
:
include
:
service-adam
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/resources/bootstrap.yml
0 → 100644
View file @
7ce32f65
spring
:
application
:
name
:
liquidnet-service-adam
profiles
:
active
:
dev
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/resources/errors.properties
0 → 100644
View file @
7ce32f65
40001
=
非法TOKEN
40002
=
被踢下线喽
40003
=
TOKEN失效
# ------------------------ 4开头错误码作系统保留
10000
=
请求频繁,稍后再试
10001
=
10002
=
10003
=
验证码发送失败
10004
=
手机验证码错误
10005
=
手机号获取失败,请更换登录方式
10006
=
第三方账号未注册
10007
=
该第三方账号已经被其他用户绑定
10008
=
已经绑定过该类型的第三方账号
10009
=
10010
=
10011
=
性别标签无效
10012
=
音乐风格标签无效
10013
=
10014
=
10015
=
入场人ID不能为空
10016
=
收货地址ID不能为空
10017
=
入场人不存在,请核实
10018
=
收货地址不存在,请核实
10019
=
入场人已存在,请核实
10101
=
姓名或身份证件号无效
10102
=
身份证号与姓名不符
10103
=
10104
=
10105
=
入场人不存在
10106
=
收获地址不存在
10200
=
仅限从未购买过会员的用户使用
10201
=
会员卡信息有误,请核实
10202
=
会员卡价格有误,请核实
10203
=
支付信息有误,请联系客服
10204
=
微信支付OPENID必传
10205
=
支付宝支付回调URL必传
10206
=
苹果支付商品标识必传
10207
=
兑换码不存在,请核实
10208
=
兑换码已使用,请核实
10209
=
兑换码不可用,请核实
10210
=
创建订单失败,请联系客服
10211
=
订单不存在
10212
=
订单状态查询失败
10213
=
感谢您选择登登登。距您上一次离开不足一年,登登登还没准备好再次邀您加入。不如我们给彼此多一些时间,有缘再相见。
10301
=
10401
=
10500
=
10501
=
会员订单回调处理失败,该订单不存在
10502
=
会员订单回调处理失败,该订单已处理
10503
=
会员订单回调处理失败,订单金额有误
10504
=
会员订单回调处理失败,会员价格信息不存在
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/resources/sqlmap.properties
0 → 100644
View file @
7ce32f65
adam_user.add
=
INSERT INTO adam_user (`uid`, mobile, `state`, is_complete, created_at) VALUES (?,?,?,?,?)
adam_user.complete
=
UPDATE adam_user SET is_complete=?, updated_at=? WHERE `uid`=?
adam_user.edit.mobile
=
UPDATE adam_user SET mobile=?, updated_at=? WHERE `uid`=?
adam_user.close
=
UPDATE adam_user SET `state`=2, updated_at=?, closed_at=? WHERE `uid`=?
# ----------------------------------------------------
adam_user_info.add
=
INSERT INTO adam_user_info (`uid`, qr_code) VALUES (?,?)
adam_user_info.edit
=
UPDATE adam_user_info SET nickname=?, sex=?, birthday=?, area=?, signature=?, avatar=?, background=?, tag_me=? WHERE uid=?
# ----------------------------------------------------
adam_real_name.add
=
INSERT INTO adam_real_name (real_name_id, `uid`, `type`, `name`, id_card, `state`, created_at) VALUES (?,?,?,?,?,?,?)
# ----------------------------------------------------
adam_third_party.add
=
INSERT INTO adam_third_party (`uid`, open_id, avatar, nickname, platform, `state`, created_at) values (?,?,?,?,?,?,?)
adam_third_party.unbind
=
UPDATE adam_third_party SET `state`=2, updated_at=? WHERE `uid`=? AND platform=?
adam_third_party.close
=
UPDATE adam_third_party SET `state`=2, updated_at=?, comment='close' WHERE `uid`=?
# ----------------------------------------------------
adam_addresses.add
=
INSERT INTO adam_addresses (addresses_id, `uid`, `name`, phone, province, city, county, address, is_default, `state`, created_at) VALUES (?,?,?,?,?,?,?,?,?,?,?)
adam_addresses.edit
=
UPDATE adam_addresses SET `name`=?, phone=?, province=?, city=?, county=?, address=?, updated_at=? WHERE addresses_id=?
adam_addresses.update.is_default
=
UPDATE adam_addresses SET is_default=?, updated_at=? WHERE addresses_id=?
adam_addresses.remove
=
UPDATE adam_addresses SET is_default=0, `state`=2, updated_at=?, deleted_at=? WHERE addresses_id=?
adam_addresses.close
=
UPDATE adam_addresses SET `state`=2, updated_at=?, deleted_at=? WHERE uid=?
# ----------------------------------------------------
adam_enters.add
=
INSERT INTO adam_enters (enters_id, `uid`, `type`,`name`, mobile, id_card, is_default, `state`, created_at) VALUES (?,?,?,?,?,?,?,?,?)
adam_enters.edit
=
UPDATE adam_enters SET `type`=?, `name`=?, mobile=?, id_card=?, is_default=?, `state`=?, updated_at=? where enters_id=?
adam_enters.update.is_default
=
UPDATE adam_enters set is_default=?, updated_at=? where enters_id=?
adam_enters.remove
=
UPDATE adam_enters SET `state`=2, updated_at=?, deleted_at=? where enters_id=?
adam_enters.close
=
UPDATE adam_enters SET `state`=2, updated_at=?, deleted_at=?, comment='close' where uid=?
# ----------------------------------------------------
adam_collection.add
=
INSERT INTO adam_collection (`uid`, content_id, `type`, `state`, created_at) VALUES (?,?,?,?,?)
adam_collection.del
=
UPDATE adam_collection SET `state`=2, updated_at=? WHERE `uid`=? AND content_id=?
# ----------------------------------------------------
adam_disposed.add
=
INSERT into adam_disposed (`uid`, content_id, `type`, `state`, created_at) VALUES (?,?,?,?,?)
adam_disposed.del
=
UPDATE adam_collection SET `state`=2, updated_at=? WHERE `uid`=? AND content_id=?
# ----------------------------------------------------
adam_member.add
=
INSERT INTO adam_member ( `name`, `title`, `sub_title`, `icon`, `avatar`, `start_no`, `type`, `interests_detail`, `notes`, `is_notice`, `notice_info`, `notice_title`, `need_question`, `display_agreement`, `agreement`, `member_id`, `limitation`) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);
# ----------------------------------------------------
adam_member_code.add
=
INSERT INTO adam_member_code (code, `type`, member_id, member_price_id, member_no, `state`, created_at, buy_order_no, buy_uid, buy_at) VALUES (?,?,?,?,?,?,?,?,?,?)
adam_member_code.exchange
=
UPDATE adam_member_code SET `state`=?, updated_at=?, use_order_no=?, use_uid=?, use_at=? WHERE code=?
# ----------------------------------------------------
adam_member_order.add
=
INSERT INTO adam_member_order (order_no, `uid`, `mode`, price, price_paid, member_name, member_id, member_price_id, `days`, `state`, member_no, birthday, device_from, pay_type, pay_no, payment_at, created_at, client_ip, `source`, version) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
adam_member_order.update
=
UPDATE adam_member_order SET `state`=?, member_no=?, payment_at=?, updated_at=? WHERE order_no=?
# ----------------------------------------------------
adam_user_member.add
=
INSERT INTO adam_user_member (`uid`, member_id, member_no, `state`, expiry_at, created_at) VALUES (?,?,?,?,?,?)
adam_user_member.update
=
UPDATE adam_user_member SET `state`=?, expiry_at=?, updated_at=? WHERE `uid`=?
adam_user_member.close
=
UPDATE adam_user_member SET `state`=2, updated_at=?, comment='close' WHERE `uid`=?
# ----------------------------------------------------
# ----------------------------------------------------
#
----------------------------------------------------
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-platform/pom.xml
0 → 100644
View file @
7ce32f65
<?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-platform
</artifactId>
<packaging>
pom
</packaging>
<modules>
<module>
liquidnet-service-platform-impl
</module>
</modules>
<dependencies>
</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