Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
SiEn
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hewei
SiEn
Commits
e066e685
Commit
e066e685
authored
Mar 11, 2021
by
giaogiao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vip开通
parent
c35bfbdd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
24 deletions
+16
-24
common/src/main/java/com/sien/common/param/VipOpenParam.java
+2
-3
common/src/main/java/com/sien/common/service/impl/AppUserServiceImpl.java
+7
-1
common/src/main/java/com/sien/common/service/impl/VipRecordServiceImpl.java
+2
-0
config/src/main/resources/config/application-prod.yml
+5
-5
config/src/main/resources/config/logback.xml
+0
-15
No files found.
common/src/main/java/com/sien/common/param/VipOpenParam.java
View file @
e066e685
...
@@ -5,7 +5,6 @@ import io.swagger.annotations.ApiModelProperty;
...
@@ -5,7 +5,6 @@ import io.swagger.annotations.ApiModelProperty;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.experimental.Accessors
;
import
lombok.experimental.Accessors
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotNull
;
import
javax.validation.constraints.NotNull
;
import
java.io.Serializable
;
import
java.io.Serializable
;
...
@@ -30,11 +29,11 @@ public class VipOpenParam implements Serializable {
...
@@ -30,11 +29,11 @@ public class VipOpenParam implements Serializable {
@ApiModelProperty
(
"开通多少年"
)
@ApiModelProperty
(
"开通多少年"
)
private
Integer
years
;
private
Integer
years
;
@NotBlank
(
message
=
"会员等级id不能为空"
)
// @NotNull
(message = "会员等级id不能为空")
@ApiModelProperty
(
"会员等级id,传入由会员列表接口返回的id"
)
@ApiModelProperty
(
"会员等级id,传入由会员列表接口返回的id"
)
private
Long
vipLevelId
;
private
Long
vipLevelId
;
@NotBlank
(
message
=
"不能为空"
)
//
@NotBlank(message = "不能为空")
@ApiModelProperty
(
"是否代替他人开通"
)
@ApiModelProperty
(
"是否代替他人开通"
)
private
Boolean
isReplace
;
private
Boolean
isReplace
;
...
...
common/src/main/java/com/sien/common/service/impl/AppUserServiceImpl.java
View file @
e066e685
package
com
.
sien
.
common
.
service
.
impl
;
package
com
.
sien
.
common
.
service
.
impl
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.OrderItem
;
import
com.baomidou.mybatisplus.core.metadata.OrderItem
;
...
@@ -48,6 +47,7 @@ import org.springframework.stereotype.Service;
...
@@ -48,6 +47,7 @@ import org.springframework.stereotype.Service;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.util.StringUtils
;
import
org.springframework.util.StringUtils
;
import
java.math.BigDecimal
;
import
java.time.Duration
;
import
java.time.Duration
;
import
java.util.List
;
import
java.util.List
;
import
java.util.concurrent.TimeUnit
;
import
java.util.concurrent.TimeUnit
;
...
@@ -221,6 +221,12 @@ public class AppUserServiceImpl extends BaseServiceImpl<AppUserMapper, AppUser>
...
@@ -221,6 +221,12 @@ public class AppUserServiceImpl extends BaseServiceImpl<AppUserMapper, AppUser>
AppUserQueryVo
appUserById
=
appUserMapper
.
getAppUserById
(
jwtToken
.
getUserId
());
AppUserQueryVo
appUserById
=
appUserMapper
.
getAppUserById
(
jwtToken
.
getUserId
());
DonationRankAndTotal
donationRankAndTotal
=
donationRecordService
.
getDonationRankAndTotal
(
jwtToken
.
getUserId
());
DonationRankAndTotal
donationRankAndTotal
=
donationRecordService
.
getDonationRankAndTotal
(
jwtToken
.
getUserId
());
if
(
donationRankAndTotal
==
null
)
{
donationRankAndTotal
=
new
DonationRankAndTotal
();
donationRankAndTotal
.
setDrTotal
(
new
BigDecimal
(
"0"
));
donationRankAndTotal
.
setRank
(
9999L
);
}
MyInfoVo
myInfoVo
=
new
MyInfoVo
();
MyInfoVo
myInfoVo
=
new
MyInfoVo
();
myInfoVo
.
setAppUserQueryVo
(
appUserById
);
myInfoVo
.
setAppUserQueryVo
(
appUserById
);
myInfoVo
.
setDonationRankAndTotal
(
donationRankAndTotal
);
myInfoVo
.
setDonationRankAndTotal
(
donationRankAndTotal
);
...
...
common/src/main/java/com/sien/common/service/impl/VipRecordServiceImpl.java
View file @
e066e685
...
@@ -168,6 +168,8 @@ public class VipRecordServiceImpl extends BaseServiceImpl<VipRecordMapper, VipRe
...
@@ -168,6 +168,8 @@ public class VipRecordServiceImpl extends BaseServiceImpl<VipRecordMapper, VipRe
vipRecord
.
setYears
(
vipOpenParam
.
getYears
());
vipRecord
.
setYears
(
vipOpenParam
.
getYears
());
vipRecord
.
setPayStatus
(
0
);
vipRecord
.
setPayStatus
(
0
);
vipRecord
.
setWxMerPayId
(
outTradeNo
);
// // 判断是否为替他人
// // 判断是否为替他人
if
(
vipOpenParam
.
getIsReplace
())
{
if
(
vipOpenParam
.
getIsReplace
())
{
AppUser
user
=
appUserService
.
getOne
(
new
QueryWrapper
<
AppUser
>().
lambda
()
AppUser
user
=
appUserService
.
getOne
(
new
QueryWrapper
<
AppUser
>().
lambda
()
...
...
config/src/main/resources/config/application-prod.yml
View file @
e066e685
...
@@ -18,13 +18,13 @@ spring-boot-plus:
...
@@ -18,13 +18,13 @@ spring-boot-plus:
spring
:
spring
:
datasource
:
datasource
:
url
:
jdbc:mysql://
mysql57:3306/Jumeirah
?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
url
:
jdbc:mysql://
127.0.0.1:3316/sien
?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
username
:
root
username
:
sien
password
:
123
password
:
v39uBc6bQ8
# Redis配置
# Redis配置
redis
:
redis
:
database
:
0
database
:
0
host
:
redis6
host
:
127.0.0.1
password
:
password
:
gmk52Kw3e4SG2r9D
port
:
6379
port
:
6379
config/src/main/resources/config/logback.xml
View file @
e066e685
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2019-2029 geekidea(https://github.com/geekidea)
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<configuration>
<configuration>
...
...
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