Compare commits
4 Commits
ea0f926f07
...
6ea72029c9
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ea72029c9 | |||
| 38c0add341 | |||
| 373e186d8d | |||
| 2235be5f92 |
112
.gitignore
vendored
Normal file
112
.gitignore
vendored
Normal file
@ -0,0 +1,112 @@
|
||||
### Java template
|
||||
# 忽略 IntelliJ IDEA 配置目录
|
||||
.idea/
|
||||
|
||||
# 忽略 IDE 生成的文件
|
||||
*.iml
|
||||
|
||||
# Java 项目编译产物
|
||||
target/
|
||||
|
||||
# Python 项目缓存目录
|
||||
__pycache__/
|
||||
|
||||
# Compiled class file
|
||||
*.class
|
||||
|
||||
# 忽略日志文件
|
||||
*.log
|
||||
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.nar
|
||||
*.ear
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
|
||||
### Eclipse template
|
||||
.metadata
|
||||
bin/
|
||||
tmp/
|
||||
*.tmp
|
||||
*.bak
|
||||
*.swp
|
||||
*~.nib
|
||||
local.properties
|
||||
.settings/
|
||||
.loadpath
|
||||
.recommenders
|
||||
|
||||
# External tool builders
|
||||
.externalToolBuilders/
|
||||
|
||||
# Locally stored "Eclipse launch configurations"
|
||||
*.launch
|
||||
|
||||
# PyDev specific (Python IDE for Eclipse)
|
||||
*.pydevproject
|
||||
|
||||
# CDT-specific (C/C++ Development Tooling)
|
||||
.cproject
|
||||
|
||||
# CDT- autotools
|
||||
.autotools
|
||||
|
||||
# Java annotation processor (APT)
|
||||
.factorypath
|
||||
|
||||
# PDT-specific (PHP Development Tools)
|
||||
.buildpath
|
||||
|
||||
# sbteclipse plugin
|
||||
.target
|
||||
|
||||
# Tern plugin
|
||||
.tern-project
|
||||
|
||||
# TeXlipse plugin
|
||||
.texlipse
|
||||
|
||||
.DS_Store
|
||||
|
||||
# STS (Spring Tool Suite)
|
||||
.springBeans
|
||||
|
||||
# Code Recommenders
|
||||
.recommenders/
|
||||
|
||||
# Annotation Processing
|
||||
.apt_generated/
|
||||
.apt_generated_test/
|
||||
|
||||
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||
.cache-main
|
||||
.scala_dependencies
|
||||
.worksheet
|
||||
|
||||
# Uncomment this line if you wish to ignore the project description file.
|
||||
# Typically, this file would be tracked if it contains build/dependency configurations:
|
||||
#.project
|
||||
|
||||
### Example user template template
|
||||
### Example user template
|
||||
|
||||
# IntelliJ project files
|
||||
.idea
|
||||
*.iml
|
||||
out
|
||||
gen
|
||||
@ -1,34 +0,0 @@
|
||||
server:
|
||||
port: 8088
|
||||
mybatis-plus:
|
||||
mapper-locations: classpath:/mapper/**/*.xml
|
||||
global-config:
|
||||
field-strategy: 1
|
||||
db-config:
|
||||
id-type: auto
|
||||
configuration:
|
||||
auto-mapping-behavior: partial
|
||||
map-underscore-to-camel-case: false
|
||||
|
||||
management: #开启SpringBoot Admin的监控
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: "*" # 暴露xxx端点,如需暴露多个,用,分隔;如需暴露所有端点,用'*'
|
||||
enabled-by-default: false
|
||||
endpoint:
|
||||
health:
|
||||
show-details: ALWAYS # 是否展示健康检查详情
|
||||
|
||||
# info信息会显示到SpringBootAdmin的server端,这里取的是pom文件中的数据
|
||||
info:
|
||||
version: 1.0-SNAPSHOT
|
||||
groupId: com.suisung.mall
|
||||
artifactId: mall-account
|
||||
|
||||
feign:
|
||||
okhttp:
|
||||
enabled: true
|
||||
ribbon:
|
||||
ConnectTimeout: 60000 #服务请求连接超时时间(毫秒)
|
||||
ReadTimeout: 60000 #服务请求处理超时时间(毫秒)
|
||||
@ -1,8 +0,0 @@
|
||||
spring:
|
||||
profiles:
|
||||
active: local
|
||||
application:
|
||||
name: mall-account
|
||||
jackson:
|
||||
date-format: yyyy-MM-dd HH:mm:ss
|
||||
time-zone: GMT+8
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.suisung.mall.account.mapper.AccountBaseConfigMapper">
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
config_key, config_value, config_type, config_enable, config_comment, config_datatype, config_name, config_formater, config_category
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.suisung.mall.account.mapper.AccountBaseRoleLevelMapper">
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
role_level_id, role_level_name, role_level_exp, role_level_fans_user, role_level_fans_store, role_level_spend, role_level_product_id, role_level_logo, role_level_validity, role_level_exp_reduction, role_level_annual_fee, role_level_rate, role_level_fx_rate, role_level_privilege, role_level_time, role_level_is_buildin
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.suisung.mall.account.mapper.AccountBaseUserLevelMapper">
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
user_level_id, user_level_name, user_level_exp, user_level_fans_user, user_level_fans_store, user_level_fans_vip, user_level_fans_team, user_level_spend, user_level_product_id, user_level_logo, user_level_validity, user_level_exp_reduction, user_level_annual_fee, user_level_rate, user_level_fx_rate, user_level_privilege, user_level_time, user_level_is_buildin
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.suisung.mall.account.mapper.AccountUserAnalyticsMapper">
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
user_id, user_spend, user_refund, user_order_buy_num, user_order_return_num, user_product_buy_num, user_product_return_num
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
@ -1,44 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.suisung.mall.account.mapper.AccountUserBaseMapper">
|
||||
<select id="getUserIdList" resultType="java.util.Map">
|
||||
SELECT b.user_id
|
||||
FROM account_user_base b
|
||||
LEFT JOIN
|
||||
account_user_info i ON i.user_id = b.user_id
|
||||
<where>
|
||||
<if test="param.user_certification != null ">
|
||||
i.user_certification = #{param.user_certification}
|
||||
</if>
|
||||
<if test="param.user_notename != null">
|
||||
AND i.user_notename like concat('%', #{param.user_notename}, '%')
|
||||
</if>
|
||||
<if test="param.user_mobile != null">
|
||||
AND i.user_mobile like concat('%', #{param.user_mobile}, '%')
|
||||
</if>
|
||||
<if test="param.user_state != null">
|
||||
AND b.user_state = #{param.user_state}
|
||||
</if>
|
||||
<if test="param.user_level_id != null">
|
||||
AND i.user_level_id = #{param.user_level_id}
|
||||
</if>
|
||||
<if test="param.user_is_admin != null">
|
||||
AND b.user_is_admin = #{param.user_is_admin}
|
||||
</if>
|
||||
<if test="param.user_account != null">
|
||||
AND b.user_account like concat('%', #{param.user_account}, '%')
|
||||
</if>
|
||||
<if test="param.user_nickname != null">
|
||||
AND b.user_nickname like concat('%', #{param.user_nickname}, '%')
|
||||
</if>
|
||||
</where>
|
||||
<choose>
|
||||
<when test="param.sidx != null and param.sord != null">
|
||||
ORDER BY i.${param.sidx} ${param.sord}, b.user_id DESC
|
||||
</when>
|
||||
<otherwise>
|
||||
ORDER BY b.user_id DESC
|
||||
</otherwise>
|
||||
</choose>
|
||||
</select>
|
||||
</mapper>
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.suisung.mall.account.mapper.AccountUserBindConnectMapper">
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
bind_id, bind_type, user_id, bind_time, bind_nickname, bind_icon, bind_gender, bind_vip, bind_level, bind_client_id, bind_country, bind_province, bind_city, bind_county, bind_code, bind_openid, bind_unionid, bind_access_token, bind_expires_in, bind_refresh_token, bind_token_ttl, bind_active
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.suisung.mall.account.mapper.AccountUserChainMapper">
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
user_id, chain_id, store_id
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.suisung.mall.account.mapper.AccountUserInfoMapper">
|
||||
|
||||
<!-- 通用查询结果列 -->
|
||||
<sql id="Base_Column_List">
|
||||
user_id, user_type_id, user_exp_total, user_level_validity_time, user_level_card, user_level_id, user_group, user_avatar, user_gender, user_birthday, user_intl, user_mobile, user_tel, user_email, user_qq, user_ww, user_province_id, user_city_id, user_county_id, user_address, user_sign, user_realname, user_idcard, user_idcard_images, user_certification, user_is_new, user_notename, user_withdraw_state
|
||||
</sql>
|
||||
|
||||
</mapper>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user