Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
ff44f604
Commit
ff44f604
authored
Jul 24, 2019
by
jiaorz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'base-modify' of
http://113.105.137.151:22280/youjj/cloud-platform
into base-modify
parents
d60de735
d721e71e
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
68 additions
and
48 deletions
+68
-48
ActivityList.java
.../java/com/xxfc/platform/activity/entity/ActivityList.java
+2
-2
ActivityManagement.java
...com/xxfc/platform/activity/entity/ActivityManagement.java
+2
-2
ActivityListBiz.java
.../java/com/xxfc/platform/activity/biz/ActivityListBiz.java
+16
-0
ActivityManagementBiz.java
...com/xxfc/platform/activity/biz/ActivityManagementBiz.java
+2
-8
ActivityUserJoinBiz.java
...a/com/xxfc/platform/activity/biz/ActivityUserJoinBiz.java
+2
-0
UserCouponBiz.java
...in/java/com/xxfc/platform/activity/biz/UserCouponBiz.java
+18
-10
UserCouponMapper.java
...a/com/xxfc/platform/activity/mapper/UserCouponMapper.java
+5
-0
ActivityListController.java
...m/xxfc/platform/activity/rest/ActivityListController.java
+18
-0
ActivityManagementController.java
.../platform/activity/rest/ActivityManagementController.java
+1
-12
ActivityPopularizeController.java
.../platform/activity/rest/ActivityPopularizeController.java
+0
-9
VehicleApplication.java
...in/java/com/xxfc/platform/vehicle/VehicleApplication.java
+2
-3
VehicleMapper.xml
...ehicle-server/src/main/resources/mapper/VehicleMapper.xml
+0
-2
No files found.
xx-activity/xx-activity-api/src/main/java/com/xxfc/platform/activity/entity/ActivityList.java
View file @
ff44f604
...
@@ -95,7 +95,7 @@ public class ActivityList implements Serializable {
...
@@ -95,7 +95,7 @@ public class ActivityList implements Serializable {
*/
*/
@Column
(
name
=
"picture"
)
@Column
(
name
=
"picture"
)
@ApiModelProperty
(
value
=
"活动图片"
)
@ApiModelProperty
(
value
=
"活动图片"
)
private
Integer
picture
;
private
String
picture
;
/**
/**
* 活动类型
* 活动类型
...
@@ -109,7 +109,7 @@ public class ActivityList implements Serializable {
...
@@ -109,7 +109,7 @@ public class ActivityList implements Serializable {
*/
*/
@Column
(
name
=
"url"
)
@Column
(
name
=
"url"
)
@ApiModelProperty
(
value
=
"活动页面链接"
)
@ApiModelProperty
(
value
=
"活动页面链接"
)
private
Integer
url
;
private
String
url
;
}
}
xx-activity/xx-activity-api/src/main/java/com/xxfc/platform/activity/entity/ActivityManagement.java
View file @
ff44f604
...
@@ -75,7 +75,7 @@ public class ActivityManagement {
...
@@ -75,7 +75,7 @@ public class ActivityManagement {
*/
*/
@Column
(
name
=
"picture"
)
@Column
(
name
=
"picture"
)
@ApiModelProperty
(
value
=
"活动图片"
)
@ApiModelProperty
(
value
=
"活动图片"
)
private
Integer
picture
;
private
String
picture
;
/**
/**
* 活动类型
* 活动类型
...
@@ -89,5 +89,5 @@ public class ActivityManagement {
...
@@ -89,5 +89,5 @@ public class ActivityManagement {
*/
*/
@Column
(
name
=
"url"
)
@Column
(
name
=
"url"
)
@ApiModelProperty
(
value
=
"活动页面链接"
)
@ApiModelProperty
(
value
=
"活动页面链接"
)
private
Integer
url
;
private
String
url
;
}
}
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/biz/ActivityListBiz.java
View file @
ff44f604
...
@@ -5,6 +5,11 @@ import org.springframework.stereotype.Service;
...
@@ -5,6 +5,11 @@ import org.springframework.stereotype.Service;
import
com.xxfc.platform.activity.entity.ActivityList
;
import
com.xxfc.platform.activity.entity.ActivityList
;
import
com.xxfc.platform.activity.mapper.ActivityListMapper
;
import
com.xxfc.platform.activity.mapper.ActivityListMapper
;
import
com.github.wxiaoqi.security.common.biz.BaseBiz
;
import
com.github.wxiaoqi.security.common.biz.BaseBiz
;
import
tk.mybatis.mapper.entity.Example
;
import
tk.mybatis.mapper.weekend.WeekendSqls
;
import
java.lang.reflect.InvocationTargetException
;
import
java.util.List
;
/**
/**
* 活动(活动列表)
* 活动(活动列表)
...
@@ -15,4 +20,15 @@ import com.github.wxiaoqi.security.common.biz.BaseBiz;
...
@@ -15,4 +20,15 @@ import com.github.wxiaoqi.security.common.biz.BaseBiz;
*/
*/
@Service
@Service
public
class
ActivityListBiz
extends
BaseBiz
<
ActivityListMapper
,
ActivityList
>
{
public
class
ActivityListBiz
extends
BaseBiz
<
ActivityListMapper
,
ActivityList
>
{
public
List
<
ActivityList
>
activities
()
throws
InvocationTargetException
,
IllegalAccessException
{
long
currentTime
=
System
.
currentTimeMillis
();
Example
exa
=
Example
.
builder
(
ActivityList
.
class
).
where
(
WeekendSqls
.<
ActivityList
>
custom
()
.
andGreaterThanOrEqualTo
(
ActivityList:
:
getEndTime
,
currentTime
)
.
andLessThanOrEqualTo
(
ActivityList:
:
getStartTime
,
currentTime
)
.
andEqualTo
(
ActivityList:
:
getStatus
,
1
)
).
orderByAsc
(
"sort"
).
build
();
List
<
ActivityList
>
activityLists
=
selectByExample
(
exa
);
return
activityLists
;
}
}
}
\ No newline at end of file
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/biz/ActivityManagementBiz.java
View file @
ff44f604
...
@@ -34,18 +34,12 @@ public class ActivityManagementBiz extends BaseBiz<ActivityManagementMapper, Act
...
@@ -34,18 +34,12 @@ public class ActivityManagementBiz extends BaseBiz<ActivityManagementMapper, Act
* @throws IllegalAccessException
* @throws IllegalAccessException
*/
*/
public
List
<
ActivityList
>
selectedActivityManagement
()
throws
InvocationTargetException
,
IllegalAccessException
{
public
List
<
ActivityList
>
selectedActivityManagement
()
throws
InvocationTargetException
,
IllegalAccessException
{
long
currentTime
=
System
.
currentTimeMillis
();
Example
exa
=
Example
.
builder
(
ActivityList
.
class
).
where
(
WeekendSqls
.<
ActivityList
>
custom
()
.
andGreaterThanOrEqualTo
(
ActivityList:
:
getEndTime
,
currentTime
)
.
andLessThanOrEqualTo
(
ActivityList:
:
getStartTime
,
currentTime
)
).
orderByAsc
(
"sort"
).
build
();
activityListBiz
.
selectByExample
(
exa
);
List
<
ActivityList
>
activityLists
=
activityListBiz
.
selectListAll
();
List
<
ActivityList
>
activityLists
=
activityListBiz
.
selectListAll
();
return
activityLists
;
return
activityLists
;
}
}
/**
/**
* 根据活动id获取活动详情
* 根据活动id获取活动详情
* @param activityId
* @param activityId
...
...
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/biz/ActivityUserJoinBiz.java
View file @
ff44f604
...
@@ -42,6 +42,7 @@ public class ActivityUserJoinBiz extends BaseBiz<ActivityUserJoinMapper,Activity
...
@@ -42,6 +42,7 @@ public class ActivityUserJoinBiz extends BaseBiz<ActivityUserJoinMapper,Activity
log
.
error
(
"----活动已超过参与人数----number==="
+
number
);
log
.
error
(
"----活动已超过参与人数----number==="
+
number
);
return
;
return
;
}
}
rule
.
setJoinNumber
(
joinNumber
+
1
);
Integer
activityId
=
rule
.
getId
();
Integer
activityId
=
rule
.
getId
();
ActivityUserJoin
userJoin
=
new
ActivityUserJoin
();
ActivityUserJoin
userJoin
=
new
ActivityUserJoin
();
userJoin
.
setActivityId
(
activityId
);
userJoin
.
setActivityId
(
activityId
);
...
@@ -52,6 +53,7 @@ public class ActivityUserJoinBiz extends BaseBiz<ActivityUserJoinMapper,Activity
...
@@ -52,6 +53,7 @@ public class ActivityUserJoinBiz extends BaseBiz<ActivityUserJoinMapper,Activity
return
;
return
;
}
}
insertSelective
(
userJoin
);
insertSelective
(
userJoin
);
ruleBiz
.
updateById
(
rule
);
}
}
//领取优惠卷
//领取优惠卷
...
...
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/biz/UserCouponBiz.java
View file @
ff44f604
...
@@ -96,6 +96,8 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
...
@@ -96,6 +96,8 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
userCoupon
.
setStartTime
(
startTime
);
userCoupon
.
setStartTime
(
startTime
);
userCoupon
.
setExpireTime
(
expireTime
);
userCoupon
.
setExpireTime
(
expireTime
);
insertSelective
(
userCoupon
);
insertSelective
(
userCoupon
);
coupon
.
setTakeCount
(
coupon
.
getTakeCount
()+
1
);
couponBiz
.
updateSelectiveById
(
coupon
);
return
ticker_no
;
return
ticker_no
;
}
}
...
@@ -119,22 +121,23 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
...
@@ -119,22 +121,23 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
}
}
Long
time
=
System
.
currentTimeMillis
();
Long
time
=
System
.
currentTimeMillis
();
List
<
UserCouponVo
>
list
=
mapper
.
getUserCouponsByType
(
userId
,
type
,
time
,
channel
);
List
<
UserCouponVo
>
list
=
mapper
.
getUserCouponsByType
(
userId
,
type
,
time
,
channel
);
if
(
amout
.
compareTo
(
new
BigDecimal
(
"0.00"
))>
0
&&
list
.
size
()>
0
){
if
(
list
.
size
()>
0
){
for
(
UserCouponVo
couponVo:
list
){
for
(
UserCouponVo
couponVo:
list
){
Integer
status
=
2
;
Integer
status
=
2
;
if
(
couponVo
.
getType
()==
1
){
if
(
amout
.
compareTo
(
new
BigDecimal
(
"0.00"
))>
0
){
if
(
amout
.
compareTo
(
couponVo
.
getWithAmount
())>=
0
){
if
(
couponVo
.
getType
()==
1
){
if
(
amout
.
compareTo
(
couponVo
.
getWithAmount
())>=
0
){
status
=
1
;
}
}
else
if
(
couponVo
.
getType
()==
3
){
status
=
1
;
status
=
1
;
}
}
}
else
if
(
couponVo
.
getType
()==
3
){
status
=
1
;
}
}
couponVo
.
setStatus
(
status
);
couponVo
.
setStatus
(
status
);
}
}
list
.
sort
(
Comparator
.
comparing
(
UserCouponVo:
:
getStatus
));
}
}
list
.
sort
(
Comparator
.
comparing
(
UserCouponVo:
:
getStatus
));
return
ObjectRestResponse
.
succ
(
list
);
return
ObjectRestResponse
.
succ
(
list
);
}
}
...
@@ -170,13 +173,16 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
...
@@ -170,13 +173,16 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
log
.
error
(
userId
+
"----该优惠卷已使用--tickerNo=="
);
log
.
error
(
userId
+
"----该优惠卷已使用--tickerNo=="
);
continue
;
continue
;
}
}
Integer
couponId
=
userCoupon
.
getCouponId
();
if
(
type
==
1
){
if
(
type
==
1
){
userCoupon
.
setIsUse
(
1
);
userCoupon
.
setIsUse
(
1
);
userCoupon
.
setOrderNo
(
orderNo
);
userCoupon
.
setOrderNo
(
orderNo
);
userCoupon
.
setUseTime
(
System
.
currentTimeMillis
());
userCoupon
.
setUseTime
(
System
.
currentTimeMillis
());
updateSelectiveById
(
userCoupon
);
updateSelectiveById
(
userCoupon
);
mapper
.
upUsedCount
(
couponId
,
1
);
}
}
couponAmout
=
couponAmout
.
add
(
getCouponAmout
(
userCoupon
.
getCouponId
()
,
channel
,
amout
));
couponAmout
=
couponAmout
.
add
(
getCouponAmout
(
couponId
,
channel
,
amout
));
}
}
return
couponAmout
;
return
couponAmout
;
}
}
...
@@ -184,7 +190,7 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
...
@@ -184,7 +190,7 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
public
BigDecimal
getCouponAmout
(
Integer
couponId
,
Integer
channel
,
BigDecimal
amout
)
{
public
BigDecimal
getCouponAmout
(
Integer
couponId
,
Integer
channel
,
BigDecimal
amout
)
{
BigDecimal
couponAmout
=
new
BigDecimal
(
"0.00"
);
BigDecimal
couponAmout
=
new
BigDecimal
(
"0.00"
);
Coupon
coupon
=
couponBiz
.
selectById
(
couponId
);
Coupon
coupon
=
couponBiz
.
selectById
(
couponId
);
if
(
coupon
!=
null
&&
coupon
.
getChannel
()
==
channel
)
{
if
(
coupon
!=
null
&&
(
coupon
.
getChannel
()
==
channel
||
coupon
.
getChannel
()==
0
)
)
{
Integer
type
=
coupon
.
getType
();
Integer
type
=
coupon
.
getType
();
if
(
type
!=
null
)
{
if
(
type
!=
null
)
{
BigDecimal
useAmout
=
coupon
.
getUsedAmount
();
BigDecimal
useAmout
=
coupon
.
getUsedAmount
();
...
@@ -208,6 +214,7 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
...
@@ -208,6 +214,7 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
log
.
error
(
"----参数不能为空"
);
log
.
error
(
"----参数不能为空"
);
return
;
return
;
}
}
TickerNo
=
TickerNo
.
trim
();
Example
example
=
new
Example
(
UserCoupon
.
class
);
Example
example
=
new
Example
(
UserCoupon
.
class
);
example
.
createCriteria
().
andEqualTo
(
"tickerNo"
,
TickerNo
).
andEqualTo
(
"isDel"
,
0
);
example
.
createCriteria
().
andEqualTo
(
"tickerNo"
,
TickerNo
).
andEqualTo
(
"isDel"
,
0
);
List
<
UserCoupon
>
list
=
selectByExample
(
example
);
List
<
UserCoupon
>
list
=
selectByExample
(
example
);
...
@@ -224,6 +231,7 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
...
@@ -224,6 +231,7 @@ public class UserCouponBiz extends BaseBiz<UserCouponMapper, UserCoupon> {
userCoupon
.
setOrderNo
(
""
);
userCoupon
.
setOrderNo
(
""
);
userCoupon
.
setUseTime
(
0L
);
userCoupon
.
setUseTime
(
0L
);
updateSelectiveById
(
userCoupon
);
updateSelectiveById
(
userCoupon
);
mapper
.
upUsedCount
(
userCoupon
.
getCouponId
(),-
1
);
}
}
...
...
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/mapper/UserCouponMapper.java
View file @
ff44f604
...
@@ -3,6 +3,7 @@ package com.xxfc.platform.activity.mapper;
...
@@ -3,6 +3,7 @@ package com.xxfc.platform.activity.mapper;
import
com.xxfc.platform.activity.entity.UserCoupon
;
import
com.xxfc.platform.activity.entity.UserCoupon
;
import
com.xxfc.platform.activity.vo.UserCouponVo
;
import
com.xxfc.platform.activity.vo.UserCouponVo
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Update
;
import
tk.mybatis.mapper.common.Mapper
;
import
tk.mybatis.mapper.common.Mapper
;
import
java.util.List
;
import
java.util.List
;
...
@@ -21,5 +22,9 @@ public interface UserCouponMapper extends Mapper<UserCoupon> {
...
@@ -21,5 +22,9 @@ public interface UserCouponMapper extends Mapper<UserCoupon> {
//单个优惠卷
//单个优惠卷
public
UserCouponVo
getUserCoupon
(
@Param
(
"tickerNo"
)
String
tickerNo
);
public
UserCouponVo
getUserCoupon
(
@Param
(
"tickerNo"
)
String
tickerNo
);
//已使用的优惠券数量数量加减
@Update
(
"update coupon set used_count=used_count+#{count} where `id`=#{id}"
)
int
upUsedCount
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"count"
)
Integer
count
);
}
}
\ No newline at end of file
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/rest/ActivityListController.java
View file @
ff44f604
package
com
.
xxfc
.
platform
.
activity
.
rest
;
package
com
.
xxfc
.
platform
.
activity
.
rest
;
import
com.github.wxiaoqi.security.common.msg.ObjectRestResponse
;
import
com.github.wxiaoqi.security.common.rest.BaseController
;
import
com.github.wxiaoqi.security.common.rest.BaseController
;
import
com.xxfc.platform.activity.biz.ActivityListBiz
;
import
com.xxfc.platform.activity.biz.ActivityListBiz
;
import
com.xxfc.platform.activity.entity.ActivityList
;
import
com.xxfc.platform.activity.entity.ActivityList
;
import
com.xxfc.platform.activity.entity.ActivityManagement
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.lang.reflect.InvocationTargetException
;
import
java.util.List
;
@RestController
@RestController
@RequestMapping
(
"activityList"
)
@RequestMapping
(
"activityList"
)
public
class
ActivityListController
extends
BaseController
<
ActivityListBiz
,
ActivityList
>
{
public
class
ActivityListController
extends
BaseController
<
ActivityListBiz
,
ActivityList
>
{
/**
* 精彩活动列表
* @return
* @throws InvocationTargetException
* @throws IllegalAccessException
*/
@GetMapping
(
"/app/unauth/activity/findAll"
)
public
ObjectRestResponse
<
List
<
ActivityList
>>
appFindAll
()
throws
InvocationTargetException
,
IllegalAccessException
{
List
<
ActivityList
>
list
=
baseBiz
.
activities
();
return
ObjectRestResponse
.
succ
(
list
);
}
}
}
\ No newline at end of file
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/rest/ActivityManagementController.java
View file @
ff44f604
...
@@ -15,7 +15,7 @@ import java.util.List;
...
@@ -15,7 +15,7 @@ import java.util.List;
* @author Administrator
* @author Administrator
*/
*/
@RestController
@RestController
@RequestMapping
(
"
M
anagement"
)
@RequestMapping
(
"
m
anagement"
)
public
class
ActivityManagementController
extends
BaseController
<
ActivityManagementBiz
,
ActivityManagement
>
{
public
class
ActivityManagementController
extends
BaseController
<
ActivityManagementBiz
,
ActivityManagement
>
{
/**
/**
...
@@ -31,17 +31,6 @@ public class ActivityManagementController extends BaseController<ActivityManagem
...
@@ -31,17 +31,6 @@ public class ActivityManagementController extends BaseController<ActivityManagem
return
ObjectRestResponse
.
succ
(
list
);
return
ObjectRestResponse
.
succ
(
list
);
}
}
/**
* 精彩活动列表
* @return
* @throws InvocationTargetException
* @throws IllegalAccessException
*/
@RequestMapping
(
"/app/unauth/activity/findAll"
)
public
ObjectRestResponse
<
List
<
ActivityManagement
>>
appFindAll
()
throws
InvocationTargetException
,
IllegalAccessException
{
List
<
ActivityList
>
list
=
baseBiz
.
selectedActivityManagement
();
return
ObjectRestResponse
.
succ
(
list
);
}
/**
/**
* 查找一条
* 查找一条
...
...
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/rest/ActivityPopularizeController.java
View file @
ff44f604
...
@@ -206,13 +206,4 @@ public class ActivityPopularizeController extends BaseController<ActivityPopular
...
@@ -206,13 +206,4 @@ public class ActivityPopularizeController extends BaseController<ActivityPopular
return
finishUserVO
;
return
finishUserVO
;
}).
collect
(
Collectors
.
toList
()));
}).
collect
(
Collectors
.
toList
()));
}
}
// public static void main(String[] args) {
// Map<String, String> map = new HashMap<String, String>(){{
//// put("1", null);
//// put("2", null);
// }};
// List<String> list = map.entrySet().stream().map(k -> k.getKey()).collect(Collectors.toList());
// System.out.println(list);
// }
}
}
\ No newline at end of file
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/VehicleApplication.java
View file @
ff44f604
...
@@ -7,16 +7,15 @@ import org.springframework.boot.SpringApplication;
...
@@ -7,16 +7,15 @@ import org.springframework.boot.SpringApplication;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
import
org.springframework.boot.autoconfigure.SpringBootApplication
;
import
org.springframework.cloud.client.discovery.EnableDiscoveryClient
;
import
org.springframework.cloud.client.discovery.EnableDiscoveryClient
;
import
org.springframework.cloud.openfeign.EnableFeignClients
;
import
org.springframework.cloud.openfeign.EnableFeignClients
;
import
org.springframework.context.annotation.ComponentScan
;
import
org.springframework.scheduling.annotation.EnableScheduling
;
import
org.springframework.scheduling.annotation.EnableScheduling
;
@SpringBootApplication
(
scanBasePackages
=
{
@SpringBootApplication
(
scanBasePackages
=
{
"com.xxfc.platform"
,
"com.xxfc.platform"
,
// "com.xxfc.platform.vehicle",
// "com.xxfc.platform.vehicle.biz",
// "com.xxfc.platform.vehicle.rest",
"com.github.wxiaoqi.security.common.handler"
,
"com.github.wxiaoqi.security.common.handler"
,
"com.github.wxiaoqi.security.common.log"
"com.github.wxiaoqi.security.common.log"
})
})
//@ComponentScan(basePackages={"com.xxfc.platform.vehicle.rest"})
@EnableDiscoveryClient
@EnableDiscoveryClient
@EnableScheduling
@EnableScheduling
@EnableAceAuthClient
@EnableAceAuthClient
...
...
xx-vehicle/xx-vehicle-server/src/main/resources/mapper/VehicleMapper.xml
View file @
ff44f604
...
@@ -234,8 +234,6 @@
...
@@ -234,8 +234,6 @@
<!-- </foreach>-->
<!-- </foreach>-->
<!-- </trim>-->
<!-- </trim>-->
)
)
)
)
</if>
</if>
<if
test=
"mRangeDateEnd !=null"
>
<if
test=
"mRangeDateEnd !=null"
>
and v.maintenance_date
<
= #{mRangeDateEnd}
and v.maintenance_date
<
= #{mRangeDateEnd}
...
...
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