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
9a44ae1a
Commit
9a44ae1a
authored
Jun 19, 2019
by
jiaorz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
车辆安排接口
parent
99a76563
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
302 additions
and
25 deletions
+302
-25
VehicleBookRecord.java
...a/com/xxfc/platform/vehicle/entity/VehicleBookRecord.java
+1
-1
VehicleCountVo.java
...n/java/com/xxfc/platform/vehicle/pojo/VehicleCountVo.java
+17
-0
VehicleRecordInfoVo.java
...a/com/xxfc/platform/vehicle/pojo/VehicleRecordInfoVo.java
+10
-0
VehiclePlanDto.java
...va/com/xxfc/platform/vehicle/pojo/dto/VehiclePlanDto.java
+30
-0
VehicleBiz.java
...c/main/java/com/xxfc/platform/vehicle/biz/VehicleBiz.java
+6
-1
VehicleBookRecordBiz.java
...a/com/xxfc/platform/vehicle/biz/VehicleBookRecordBiz.java
+8
-0
VehicleWarningMsgBiz.java
...a/com/xxfc/platform/vehicle/biz/VehicleWarningMsgBiz.java
+4
-0
VehicleBookRecordMapper.java
...xxfc/platform/vehicle/mapper/VehicleBookRecordMapper.java
+4
-0
VehicleMapper.java
.../java/com/xxfc/platform/vehicle/mapper/VehicleMapper.java
+6
-0
VehicleWarningMsgMapper.java
...xxfc/platform/vehicle/mapper/VehicleWarningMsgMapper.java
+3
-0
VehicleController.java
...ava/com/xxfc/platform/vehicle/rest/VehicleController.java
+32
-0
VehicleBookRecordMapper.xml
...ver/src/main/resources/mapper/VehicleBookRecordMapper.xml
+34
-10
VehicleMapper.xml
...ehicle-server/src/main/resources/mapper/VehicleMapper.xml
+118
-11
VehicleWarningMsgMapper.xml
...ver/src/main/resources/mapper/VehicleWarningMsgMapper.xml
+29
-2
No files found.
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/entity/VehicleBookRecord.java
View file @
9a44ae1a
...
@@ -18,7 +18,7 @@ public class VehicleBookRecord {
...
@@ -18,7 +18,7 @@ public class VehicleBookRecord {
/**
/**
* 车辆id
* 车辆id
*/
*/
private
String
vehicle
;
private
String
vehicle
Id
;
/**
/**
* 申请状态:1-申请中 2-已通过 3-已归还 4-拒绝 5-逾期归还
* 申请状态:1-申请中 2-已通过 3-已归还 4-拒绝 5-逾期归还
...
...
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/pojo/VehicleCountVo.java
0 → 100644
View file @
9a44ae1a
package
com
.
xxfc
.
platform
.
vehicle
.
pojo
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
@Data
public
class
VehicleCountVo
{
@ApiModelProperty
(
value
=
"总数"
)
private
Integer
total
;
@ApiModelProperty
(
value
=
"车辆状态"
)
private
Integer
travelStatus
;
@ApiModelProperty
(
value
=
"状态描述"
)
private
String
detail
;
}
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/pojo/VehicleRecordInfoVo.java
0 → 100644
View file @
9a44ae1a
package
com
.
xxfc
.
platform
.
vehicle
.
pojo
;
import
com.xxfc.platform.vehicle.entity.Vehicle
;
import
com.xxfc.platform.vehicle.entity.VehicleBookRecord
;
import
lombok.Data
;
@Data
public
class
VehicleRecordInfoVo
extends
VehicleBookRecord
{
Vehicle
vehicle
;
}
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/pojo/dto/VehiclePlanDto.java
0 → 100644
View file @
9a44ae1a
package
com
.
xxfc
.
platform
.
vehicle
.
pojo
.
dto
;
import
com.github.wxiaoqi.security.common.vo.PageParam
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
@Data
public
class
VehiclePlanDto
extends
PageParam
{
@ApiModelProperty
(
value
=
"车辆Id"
)
private
String
vehicleId
;
@ApiModelProperty
(
value
=
"开始时间"
)
private
String
startTime
;
@ApiModelProperty
(
value
=
"结束时间"
)
private
String
endTime
;
@ApiModelProperty
(
value
=
"车辆状态"
)
private
Integer
status
;
@ApiModelProperty
(
value
=
"车牌"
)
private
String
numberPlate
;
@ApiModelProperty
(
value
=
"所属分公司Id"
)
private
Integer
subordinateBranch
;
@ApiModelProperty
(
value
=
"停车分公司Id"
)
private
Integer
parkBranchCompanyId
;
}
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/biz/VehicleBiz.java
View file @
9a44ae1a
...
@@ -24,6 +24,7 @@ import com.xxfc.platform.vehicle.mapper.VehicleBookInfoMapper;
...
@@ -24,6 +24,7 @@ import com.xxfc.platform.vehicle.mapper.VehicleBookInfoMapper;
import
com.xxfc.platform.vehicle.mapper.VehicleBookRecordMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleBookRecordMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleMapper
;
import
com.xxfc.platform.vehicle.pojo.*
;
import
com.xxfc.platform.vehicle.pojo.*
;
import
com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.beanutils.BeanUtils
;
import
org.apache.commons.beanutils.BeanUtils
;
import
org.apache.commons.beanutils.PropertyUtils
;
import
org.apache.commons.beanutils.PropertyUtils
;
...
@@ -295,7 +296,7 @@ public class VehicleBiz extends BaseBiz<VehicleMapper, Vehicle> {
...
@@ -295,7 +296,7 @@ public class VehicleBiz extends BaseBiz<VehicleMapper, Vehicle> {
}
}
//加入预定申请记录
//加入预定申请记录
VehicleBookRecord
vehicleBookRecord
=
new
VehicleBookRecord
();
VehicleBookRecord
vehicleBookRecord
=
new
VehicleBookRecord
();
vehicleBookRecord
.
setVehicle
(
bookVehicleVo
.
getVehicle
());
vehicleBookRecord
.
setVehicle
Id
(
bookVehicleVo
.
getVehicle
());
vehicleBookRecord
.
setBookType
(
BookType
.
EMPLOYEE_APPLY
.
getCode
());
vehicleBookRecord
.
setBookType
(
BookType
.
EMPLOYEE_APPLY
.
getCode
());
vehicleBookRecord
.
setStatus
(
VehicleBookRecordStatus
.
APPLY
.
getCode
());
vehicleBookRecord
.
setStatus
(
VehicleBookRecordStatus
.
APPLY
.
getCode
());
vehicleBookRecord
.
setBookUser
(
userId
);
vehicleBookRecord
.
setBookUser
(
userId
);
...
@@ -912,4 +913,8 @@ public class VehicleBiz extends BaseBiz<VehicleMapper, Vehicle> {
...
@@ -912,4 +913,8 @@ public class VehicleBiz extends BaseBiz<VehicleMapper, Vehicle> {
PageInfo
<
Vehicle
>
usableVehicleInfo
=
new
PageInfo
<>(
lists
);
PageInfo
<
Vehicle
>
usableVehicleInfo
=
new
PageInfo
<>(
lists
);
return
PageDataVO
.
pageInfo
(
usableVehicleInfo
);
return
PageDataVO
.
pageInfo
(
usableVehicleInfo
);
}
}
public
List
<
VehicleCountVo
>
countVehicleByParam
(
VehiclePlanDto
vehiclePlanDto
)
{
return
mapper
.
countVehicleByParam
(
vehiclePlanDto
);
}
}
}
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/biz/VehicleBookRecordBiz.java
View file @
9a44ae1a
...
@@ -3,6 +3,7 @@ package com.xxfc.platform.vehicle.biz;
...
@@ -3,6 +3,7 @@ package com.xxfc.platform.vehicle.biz;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageInfo
;
import
com.github.pagehelper.PageInfo
;
import
com.github.wxiaoqi.security.common.biz.BaseBiz
;
import
com.github.wxiaoqi.security.common.biz.BaseBiz
;
import
com.github.wxiaoqi.security.common.util.Query
;
import
com.github.wxiaoqi.security.common.vo.PageDataVO
;
import
com.github.wxiaoqi.security.common.vo.PageDataVO
;
import
com.google.common.collect.ImmutableMap
;
import
com.google.common.collect.ImmutableMap
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Lists
;
...
@@ -17,6 +18,7 @@ import com.xxfc.platform.vehicle.entity.VehicleBookRecord;
...
@@ -17,6 +18,7 @@ import com.xxfc.platform.vehicle.entity.VehicleBookRecord;
import
com.xxfc.platform.vehicle.mapper.BookRecordAccItemMapper
;
import
com.xxfc.platform.vehicle.mapper.BookRecordAccItemMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleBookRecordMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleBookRecordMapper
;
import
com.xxfc.platform.vehicle.pojo.*
;
import
com.xxfc.platform.vehicle.pojo.*
;
import
com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.beanutils.BeanUtils
;
import
org.apache.commons.beanutils.BeanUtils
;
import
org.apache.commons.beanutils.PropertyUtils
;
import
org.apache.commons.beanutils.PropertyUtils
;
...
@@ -313,6 +315,12 @@ public class VehicleBookRecordBiz extends BaseBiz<VehicleBookRecordMapper, Vehic
...
@@ -313,6 +315,12 @@ public class VehicleBookRecordBiz extends BaseBiz<VehicleBookRecordMapper, Vehic
}
}
public
PageDataVO
<
VehicleRecordInfoVo
>
getListByParam
(
VehiclePlanDto
vehiclePlanDto
)
{
Query
query
=
new
Query
(
vehiclePlanDto
);
PageDataVO
<
VehicleRecordInfoVo
>
pageDataVO
=
PageDataVO
.
pageInfo
(
query
,
()
->
mapper
.
getByParam
(
query
.
getSuper
()));
return
pageDataVO
;
}
private
String
getTbNameNow
(){
private
String
getTbNameNow
(){
return
TB_NAME_PREFIX
+
DateTime
.
now
().
toString
(
YEAR_DATE_TIME_FORMATTER
);
return
TB_NAME_PREFIX
+
DateTime
.
now
().
toString
(
YEAR_DATE_TIME_FORMATTER
);
}
}
...
...
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/biz/VehicleWarningMsgBiz.java
View file @
9a44ae1a
...
@@ -14,6 +14,7 @@ import com.xxfc.platform.vehicle.entity.VehicleWarningRule;
...
@@ -14,6 +14,7 @@ import com.xxfc.platform.vehicle.entity.VehicleWarningRule;
import
com.xxfc.platform.vehicle.mapper.VehicleMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleWarningMsgMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleWarningMsgMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleWarningRuleMapper
;
import
com.xxfc.platform.vehicle.mapper.VehicleWarningRuleMapper
;
import
com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto
;
import
com.xxfc.platform.vehicle.util.JSUtil
;
import
com.xxfc.platform.vehicle.util.JSUtil
;
import
com.xxfc.platform.vehicle.pojo.AddVehicleWarningMsgVo
;
import
com.xxfc.platform.vehicle.pojo.AddVehicleWarningMsgVo
;
import
com.github.wxiaoqi.security.common.vo.PageDataVO
;
import
com.github.wxiaoqi.security.common.vo.PageDataVO
;
...
@@ -212,5 +213,8 @@ public class VehicleWarningMsgBiz extends BaseBiz<VehicleWarningMsgMapper, Vehic
...
@@ -212,5 +213,8 @@ public class VehicleWarningMsgBiz extends BaseBiz<VehicleWarningMsgMapper, Vehic
}
}
}
}
public
List
<
VehicleWarningMsg
>
getAllByParam
(
VehiclePlanDto
vehiclePlanDto
)
{
return
mapper
.
getAllByparam
(
vehiclePlanDto
);
}
}
}
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/mapper/VehicleBookRecordMapper.java
View file @
9a44ae1a
...
@@ -3,6 +3,8 @@ package com.xxfc.platform.vehicle.mapper;
...
@@ -3,6 +3,8 @@ package com.xxfc.platform.vehicle.mapper;
import
com.xxfc.platform.vehicle.entity.VehicleBookRecord
;
import
com.xxfc.platform.vehicle.entity.VehicleBookRecord
;
import
com.xxfc.platform.vehicle.pojo.QueryVehicleBookRecordVo
;
import
com.xxfc.platform.vehicle.pojo.QueryVehicleBookRecordVo
;
import
com.xxfc.platform.vehicle.pojo.VehicleBookRecordAndTbNameVo
;
import
com.xxfc.platform.vehicle.pojo.VehicleBookRecordAndTbNameVo
;
import
com.xxfc.platform.vehicle.pojo.VehicleRecordInfoVo
;
import
com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto
;
import
tk.mybatis.mapper.common.Mapper
;
import
tk.mybatis.mapper.common.Mapper
;
import
java.util.List
;
import
java.util.List
;
...
@@ -28,4 +30,6 @@ public interface VehicleBookRecordMapper extends Mapper<VehicleBookRecord> {
...
@@ -28,4 +30,6 @@ public interface VehicleBookRecordMapper extends Mapper<VehicleBookRecord> {
public
VehicleBookRecord
getById
(
Map
<
String
,
Object
>
params
);
public
VehicleBookRecord
getById
(
Map
<
String
,
Object
>
params
);
public
List
<
VehicleRecordInfoVo
>
getByParam
(
Map
<
String
,
Object
>
params
);
}
}
\ No newline at end of file
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/mapper/VehicleMapper.java
View file @
9a44ae1a
...
@@ -4,6 +4,8 @@ import com.xxfc.platform.vehicle.entity.Vehicle;
...
@@ -4,6 +4,8 @@ import com.xxfc.platform.vehicle.entity.Vehicle;
import
com.xxfc.platform.vehicle.pojo.AddOrUpdateVehicleVo
;
import
com.xxfc.platform.vehicle.pojo.AddOrUpdateVehicleVo
;
import
com.xxfc.platform.vehicle.pojo.QueryVehicleVo
;
import
com.xxfc.platform.vehicle.pojo.QueryVehicleVo
;
import
com.xxfc.platform.vehicle.pojo.UsableVehicleModelVO
;
import
com.xxfc.platform.vehicle.pojo.UsableVehicleModelVO
;
import
com.xxfc.platform.vehicle.pojo.VehicleCountVo
;
import
com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto
;
import
org.springframework.data.repository.query.Param
;
import
org.springframework.data.repository.query.Param
;
import
tk.mybatis.mapper.common.Mapper
;
import
tk.mybatis.mapper.common.Mapper
;
...
@@ -13,12 +15,14 @@ import java.util.Map;
...
@@ -13,12 +15,14 @@ import java.util.Map;
public
interface
VehicleMapper
extends
Mapper
<
Vehicle
>
{
public
interface
VehicleMapper
extends
Mapper
<
Vehicle
>
{
public
List
<
QueryVehicleVo
>
getByPage
(
Map
<
String
,
Object
>
params
);
public
List
<
QueryVehicleVo
>
getByPage
(
Map
<
String
,
Object
>
params
);
public
List
<
QueryVehicleVo
>
getByPageNotAllData
(
Map
<
String
,
Object
>
params
);
public
List
<
QueryVehicleVo
>
getByPageNotAllData
(
Map
<
String
,
Object
>
params
);
public
int
updateStatusById
(
Map
<
String
,
Object
>
params
);
public
int
updateStatusById
(
Map
<
String
,
Object
>
params
);
/**
/**
* 锁定相关编码 或 车牌 的行
* 锁定相关编码 或 车牌 的行
*
* @param addOrUpdateVehicleVo
* @param addOrUpdateVehicleVo
* @return
* @return
*/
*/
...
@@ -32,4 +36,6 @@ public interface VehicleMapper extends Mapper<Vehicle> {
...
@@ -32,4 +36,6 @@ public interface VehicleMapper extends Mapper<Vehicle> {
List
<
UsableVehicleModelVO
>
searchUsableModel
(
Map
<
String
,
Object
>
params
);
List
<
UsableVehicleModelVO
>
searchUsableModel
(
Map
<
String
,
Object
>
params
);
List
<
Vehicle
>
searchUsableVehicle
(
Map
<
String
,
Object
>
params
);
List
<
Vehicle
>
searchUsableVehicle
(
Map
<
String
,
Object
>
params
);
List
<
VehicleCountVo
>
countVehicleByParam
(
VehiclePlanDto
vehiclePlanDto
);
}
}
\ No newline at end of file
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/mapper/VehicleWarningMsgMapper.java
View file @
9a44ae1a
...
@@ -2,6 +2,7 @@ package com.xxfc.platform.vehicle.mapper;
...
@@ -2,6 +2,7 @@ package com.xxfc.platform.vehicle.mapper;
import
com.xxfc.platform.vehicle.entity.VehicleWarningMsg
;
import
com.xxfc.platform.vehicle.entity.VehicleWarningMsg
;
import
com.xxfc.platform.vehicle.pojo.QueryVehicleWarningMsgVo
;
import
com.xxfc.platform.vehicle.pojo.QueryVehicleWarningMsgVo
;
import
com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto
;
import
tk.mybatis.mapper.common.Mapper
;
import
tk.mybatis.mapper.common.Mapper
;
import
java.util.List
;
import
java.util.List
;
...
@@ -13,4 +14,6 @@ public interface VehicleWarningMsgMapper extends Mapper<VehicleWarningMsg> {
...
@@ -13,4 +14,6 @@ public interface VehicleWarningMsgMapper extends Mapper<VehicleWarningMsg> {
public
List
<
VehicleWarningMsg
>
getMsgByVehicle
(
String
vehicleId
);
public
List
<
VehicleWarningMsg
>
getMsgByVehicle
(
String
vehicleId
);
public
List
<
VehicleWarningMsg
>
getAllByparam
(
VehiclePlanDto
vehiclePlanDto
);
}
}
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/rest/VehicleController.java
View file @
9a44ae1a
...
@@ -14,9 +14,11 @@ import com.github.wxiaoqi.security.common.exception.BaseException;
...
@@ -14,9 +14,11 @@ import com.github.wxiaoqi.security.common.exception.BaseException;
import
com.github.wxiaoqi.security.common.msg.ObjectRestResponse
;
import
com.github.wxiaoqi.security.common.msg.ObjectRestResponse
;
import
com.github.wxiaoqi.security.common.util.process.ResultCode
;
import
com.github.wxiaoqi.security.common.util.process.ResultCode
;
import
com.github.wxiaoqi.security.common.vo.PageDataVO
;
import
com.github.wxiaoqi.security.common.vo.PageDataVO
;
import
com.google.common.collect.Maps
;
import
com.xxfc.platform.vehicle.biz.VehicleBiz
;
import
com.xxfc.platform.vehicle.biz.VehicleBiz
;
import
com.xxfc.platform.vehicle.biz.VehicleBookRecordBiz
;
import
com.xxfc.platform.vehicle.biz.VehicleBookRecordBiz
;
import
com.xxfc.platform.vehicle.biz.VehiclePlatCataBiz
;
import
com.xxfc.platform.vehicle.biz.VehiclePlatCataBiz
;
import
com.xxfc.platform.vehicle.biz.VehicleWarningMsgBiz
;
import
com.xxfc.platform.vehicle.common.BaseController
;
import
com.xxfc.platform.vehicle.common.BaseController
;
import
com.xxfc.platform.vehicle.common.CustomIllegalParamException
;
import
com.xxfc.platform.vehicle.common.CustomIllegalParamException
;
import
com.xxfc.platform.vehicle.common.RestResponse
;
import
com.xxfc.platform.vehicle.common.RestResponse
;
...
@@ -25,8 +27,11 @@ import com.xxfc.platform.vehicle.constant.VehicleBookRecordStatus;
...
@@ -25,8 +27,11 @@ import com.xxfc.platform.vehicle.constant.VehicleBookRecordStatus;
import
com.xxfc.platform.vehicle.entity.Vehicle
;
import
com.xxfc.platform.vehicle.entity.Vehicle
;
import
com.xxfc.platform.vehicle.entity.VehicleBookInfo
;
import
com.xxfc.platform.vehicle.entity.VehicleBookInfo
;
import
com.xxfc.platform.vehicle.entity.VehiclePlatCata
;
import
com.xxfc.platform.vehicle.entity.VehiclePlatCata
;
import
com.xxfc.platform.vehicle.entity.VehicleWarningMsg
;
import
com.xxfc.platform.vehicle.pojo.*
;
import
com.xxfc.platform.vehicle.pojo.*
;
import
com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiOperation
;
import
io.swagger.annotations.ApiOperation
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.commons.lang3.StringUtils
;
...
@@ -71,6 +76,9 @@ public class VehicleController extends BaseController<VehicleBiz> {
...
@@ -71,6 +76,9 @@ public class VehicleController extends BaseController<VehicleBiz> {
@Autowired
@Autowired
private
VehiclePlatCataBiz
vehiclePlatCataBiz
;
private
VehiclePlatCataBiz
vehiclePlatCataBiz
;
@Autowired
private
VehicleWarningMsgBiz
vehicleWarningMsgBiz
;
private
static
Integer
MAX_DRIVING_LICENSE_SIZE
=
10
*
1024
*
1024
;
//10M
private
static
Integer
MAX_DRIVING_LICENSE_SIZE
=
10
*
1024
*
1024
;
//10M
public
static
final
DateTimeFormatter
DEFAULT_FORMATTER
=
DateTimeFormat
.
forPattern
(
"yyyy-MM-dd HH:mm:ss"
);
public
static
final
DateTimeFormatter
DEFAULT_FORMATTER
=
DateTimeFormat
.
forPattern
(
"yyyy-MM-dd HH:mm:ss"
);
...
@@ -138,6 +146,7 @@ public class VehicleController extends BaseController<VehicleBiz> {
...
@@ -138,6 +146,7 @@ public class VehicleController extends BaseController<VehicleBiz> {
}
}
@RequestMapping
(
value
=
"/upload/drivingLicense"
,
method
=
RequestMethod
.
POST
)
@RequestMapping
(
value
=
"/upload/drivingLicense"
,
method
=
RequestMethod
.
POST
)
@ApiOperation
(
value
=
"上传驾驶员驾驶证"
)
public
RestResponse
uploadDrivingLicense
(
@RequestParam
(
"file"
)
MultipartFile
file
)
public
RestResponse
uploadDrivingLicense
(
@RequestParam
(
"file"
)
MultipartFile
file
)
throws
Exception
{
throws
Exception
{
String
contentType
=
file
.
getContentType
();
//图片文件类型
String
contentType
=
file
.
getContentType
();
//图片文件类型
...
@@ -154,16 +163,19 @@ public class VehicleController extends BaseController<VehicleBiz> {
...
@@ -154,16 +163,19 @@ public class VehicleController extends BaseController<VehicleBiz> {
@IgnoreUserToken
@IgnoreUserToken
@RequestMapping
(
value
=
"/download/drivingLicense"
,
method
=
RequestMethod
.
GET
)
//匹配的是href中的download请求
@RequestMapping
(
value
=
"/download/drivingLicense"
,
method
=
RequestMethod
.
GET
)
//匹配的是href中的download请求
@ApiOperation
(
value
=
"下载驾驶证"
)
public
ResponseEntity
<
byte
[]>
downloadDrivingLicense
(
@RequestParam
(
"realFileRelPath"
)
String
realFileRelPath
)
throws
Exception
{
public
ResponseEntity
<
byte
[]>
downloadDrivingLicense
(
@RequestParam
(
"realFileRelPath"
)
String
realFileRelPath
)
throws
Exception
{
return
baseBiz
.
downloadDrivingLicense
(
realFileRelPath
);
return
baseBiz
.
downloadDrivingLicense
(
realFileRelPath
);
}
}
@RequestMapping
(
value
=
"/bookedInfo/{vehicleId}/{yearMonth}"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"/bookedInfo/{vehicleId}/{yearMonth}"
,
method
=
RequestMethod
.
GET
)
@ApiOperation
(
value
=
"获取车辆预定信息"
)
public
RestResponse
<
VehicleBookInfo
>
getBookedInfo
(
@PathVariable
String
vehicleId
,
@PathVariable
String
yearMonth
)
{
public
RestResponse
<
VehicleBookInfo
>
getBookedInfo
(
@PathVariable
String
vehicleId
,
@PathVariable
String
yearMonth
)
{
return
RestResponse
.
data
(
baseBiz
.
getByVehicleIdAndYearMonth
(
vehicleId
,
yearMonth
));
return
RestResponse
.
data
(
baseBiz
.
getByVehicleIdAndYearMonth
(
vehicleId
,
yearMonth
));
}
}
@RequestMapping
(
value
=
"/bookedInfo/{vehicleId}"
,
method
=
RequestMethod
.
GET
)
@RequestMapping
(
value
=
"/bookedInfo/{vehicleId}"
,
method
=
RequestMethod
.
GET
)
@ApiOperation
(
value
=
"根据车辆Id获取所有的预定信息"
)
public
RestResponse
<
List
<
VehicleBookInfo
>>
getBookedInfo
(
@PathVariable
String
vehicleId
)
{
public
RestResponse
<
List
<
VehicleBookInfo
>>
getBookedInfo
(
@PathVariable
String
vehicleId
)
{
return
RestResponse
.
data
(
baseBiz
.
getByVehicleIdAndYearMonth
(
vehicleId
));
return
RestResponse
.
data
(
baseBiz
.
getByVehicleIdAndYearMonth
(
vehicleId
));
}
}
...
@@ -175,6 +187,7 @@ public class VehicleController extends BaseController<VehicleBiz> {
...
@@ -175,6 +187,7 @@ public class VehicleController extends BaseController<VehicleBiz> {
* @return
* @return
*/
*/
@RequestMapping
(
value
=
"/book/4employee"
,
method
=
RequestMethod
.
POST
)
@RequestMapping
(
value
=
"/book/4employee"
,
method
=
RequestMethod
.
POST
)
@ApiOperation
(
value
=
"申请预定车辆信息"
)
public
RestResponse
<
Integer
>
applyVehicle
(
@RequestBody
BookVehicleVO
bookVehicleVo
)
throws
Exception
{
public
RestResponse
<
Integer
>
applyVehicle
(
@RequestBody
BookVehicleVO
bookVehicleVo
)
throws
Exception
{
Integer
operatorId
=
Integer
.
parseInt
(
BaseContextHandler
.
getUserID
());
Integer
operatorId
=
Integer
.
parseInt
(
BaseContextHandler
.
getUserID
());
String
userName
=
BaseContextHandler
.
getName
();
String
userName
=
BaseContextHandler
.
getName
();
...
@@ -364,4 +377,23 @@ public class VehicleController extends BaseController<VehicleBiz> {
...
@@ -364,4 +377,23 @@ public class VehicleController extends BaseController<VehicleBiz> {
return
ObjectRestResponse
.
succ
(
bookVehicleVo
.
getVehicle
());
return
ObjectRestResponse
.
succ
(
bookVehicleVo
.
getVehicle
());
}
}
@RequestMapping
(
value
=
"/getVehiclePlanList"
,
method
=
RequestMethod
.
GET
)
@ApiOperation
(
value
=
"获取排车信息"
)
@IgnoreClientToken
public
ObjectRestResponse
<
Map
<
String
,
Object
>>
getVehiclePlanList
(
VehiclePlanDto
vehiclePlanDto
)
{
//获取统计信息
List
<
VehicleCountVo
>
vehicleCountVos
=
baseBiz
.
countVehicleByParam
(
vehiclePlanDto
);
//获取警告信息
List
<
VehicleWarningMsg
>
vehicleWarningMsgs
=
vehicleWarningMsgBiz
.
getAllByParam
(
vehiclePlanDto
);
//获取列表
PageDataVO
<
VehicleRecordInfoVo
>
pageDataVO
=
vehicleBookRecordBiz
.
getListByParam
(
vehiclePlanDto
);
Map
<
String
,
Object
>
map
=
Maps
.
newHashMap
();
map
.
put
(
"vehicleCountVos"
,
vehicleCountVos
);
map
.
put
(
"vehicleWarningMsgs"
,
vehicleWarningMsgs
);
map
.
put
(
"vehicleRecordInfoVo"
,
pageDataVO
);
return
ObjectRestResponse
.
succ
(
map
);
}
}
}
xx-vehicle/xx-vehicle-server/src/main/resources/mapper/VehicleBookRecordMapper.xml
View file @
9a44ae1a
...
@@ -2,6 +2,10 @@
...
@@ -2,6 +2,10 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper
namespace=
"com.xxfc.platform.vehicle.mapper.VehicleBookRecordMapper"
>
<mapper
namespace=
"com.xxfc.platform.vehicle.mapper.VehicleBookRecordMapper"
>
<resultMap
id=
"getVehicleMap"
type=
"com.xxfc.platform.vehicle.pojo.VehicleRecordInfoVo"
>
<association
property=
"vehicleId"
column=
"vehicle"
select=
"com.xxfc.platform.vehicle.mapper.VehicleMapper.selectByPrimaryKey"
/>
</resultMap>
<update
id=
"changeRecordStatus"
parameterType=
"java.util.Map"
>
<update
id=
"changeRecordStatus"
parameterType=
"java.util.Map"
>
update vehicle_book_record set
update vehicle_book_record set
<if
test=
"reviewerApply != null "
>
<if
test=
"reviewerApply != null "
>
...
@@ -87,7 +91,7 @@
...
@@ -87,7 +91,7 @@
<insert
id=
"insertHis"
parameterType=
"java.util.Map"
>
<insert
id=
"insertHis"
parameterType=
"java.util.Map"
>
insert into ${tbName} (
insert into ${tbName} (
`id`,
`id`,
`vehicle`,
`vehicle
_id
`,
`status`,
`status`,
`book_type`,
`book_type`,
`book_user`,
`book_user`,
...
@@ -119,7 +123,7 @@
...
@@ -119,7 +123,7 @@
)
)
values(
values(
#{id},
#{id},
#{vehicle},
#{vehicle
Id
},
#{status},
#{status},
#{bookType},
#{bookType},
#{bookUser},
#{bookUser},
...
@@ -154,7 +158,7 @@
...
@@ -154,7 +158,7 @@
<select
id=
"getByPage4Month"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.entity.VehicleBookRecord"
>
<select
id=
"getByPage4Month"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.entity.VehicleBookRecord"
>
select
select
`id`,
`id`,
`vehicle`,
`vehicle
_id
`,
`status`,
`status`,
`book_type`,
`book_type`,
`book_user`,
`book_user`,
...
@@ -196,7 +200,7 @@
...
@@ -196,7 +200,7 @@
<select
id=
"getByPage"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.pojo.QueryVehicleBookRecordVo"
>
<select
id=
"getByPage"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.pojo.QueryVehicleBookRecordVo"
>
select
select
vbr.`id`,
vbr.`id`,
vbr.`vehicle`,
vbr.`vehicle
_id
`,
vbr.`status`,
vbr.`status`,
vbr.`book_type`,
vbr.`book_type`,
vbr.`book_user`,
vbr.`book_user`,
...
@@ -236,11 +240,11 @@
...
@@ -236,11 +240,11 @@
vbf.booked_date as bookedDate
vbf.booked_date as bookedDate
from
from
${tbName} vbr left join
${tbName} vbr left join
vehicle v on vbr.vehicle = v.id left join
vehicle v on vbr.vehicle
_id
= v.id left join
branch_company bc on bc.id = v.subordinate_branch left join
branch_company bc on bc.id = v.subordinate_branch left join
branch_company bcl on bcl.id = vbr.lift_company left join
branch_company bcl on bcl.id = vbr.lift_company left join
branch_company bcr on bcr.id = vbr.ret_company left join
branch_company bcr on bcr.id = vbr.ret_company left join
vehicle_book_info vbf on vbf.vehicle = vbr.vehicle and vbf.year_month = #{selectedMonth}
vehicle_book_info vbf on vbf.vehicle = vbr.vehicle
_id
and vbf.year_month = #{selectedMonth}
where
where
1=1
1=1
<if
test=
"liftCompany !=null"
>
<if
test=
"liftCompany !=null"
>
...
@@ -273,7 +277,7 @@
...
@@ -273,7 +277,7 @@
<select
id=
"getById"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.entity.VehicleBookRecord"
>
<select
id=
"getById"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.entity.VehicleBookRecord"
>
select
select
vbr.`id`,
vbr.`id`,
vbr.`vehicle`,
vbr.`vehicle
_id
`,
vbr.`status`,
vbr.`status`,
vbr.`book_type`,
vbr.`book_type`,
vbr.`book_user`,
vbr.`book_user`,
...
@@ -309,12 +313,32 @@
...
@@ -309,12 +313,32 @@
</select>
</select>
<select
id=
"getByParam"
parameterType=
"java.util.Map"
resultMap=
"getVehicleMap"
>
select v1.* from vehicle_book_record v1
left join vehicle v2 on v2.id = v1.vehicle
<where>
<if
test=
"startTime != null"
>
and v1.create_time between startTime and endTime
</if>
<if
test=
"numberPlate != null"
>
and v2.number_plate = #{numberPlate}
</if>
<if
test=
"status != null"
>
and v2.status = #{status}
</if>
<if
test=
"subordinateBranch != null"
>
and v2.subordinate_branch = #{subordinateBranch}
</if>
<if
test=
"parkBranchCompanyId != null"
>
and v2.park_branch_company_id = #{parkBranchCompanyId}
</if>
</where>
</select>
<insert
id=
"createTbIfNotExists"
parameterType=
"java.lang.String"
>
<insert
id=
"createTbIfNotExists"
parameterType=
"java.lang.String"
>
CREATE TABLE IF NOT EXISTS ${_parameter} (
CREATE TABLE IF NOT EXISTS ${_parameter} (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`vehicle` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆id',
`vehicle
_id
` varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆id',
`status` int(255) NULL DEFAULT NULL COMMENT '申请状态:1-申请中 2-已通过 3-已归还 4-拒绝 5-逾期归还 6-已取消',
`status` int(255) NULL DEFAULT NULL COMMENT '申请状态:1-申请中 2-已通过 3-已归还 4-拒绝 5-逾期归还 6-已取消',
`book_type` int(11) NOT NULL COMMENT '预定类型,1-用户租赁、2-内部员工申请 3-维修',
`book_type` int(11) NOT NULL COMMENT '预定类型,1-用户租赁、2-内部员工申请 3-维修',
`book_user` int(11) NOT NULL COMMENT '预定用户id',
`book_user` int(11) NOT NULL COMMENT '预定用户id',
...
@@ -346,7 +370,7 @@
...
@@ -346,7 +370,7 @@
`mileage_ret` int(10) NULL DEFAULT NULL COMMENT '还车里程数',
`mileage_ret` int(10) NULL DEFAULT NULL COMMENT '还车里程数',
`have_violation` tinyint(4) NULL DEFAULT NULL COMMENT '是否违章',
`have_violation` tinyint(4) NULL DEFAULT NULL COMMENT '是否违章',
PRIMARY KEY (`id`) USING BTREE,
PRIMARY KEY (`id`) USING BTREE,
INDEX `i_vehicle`(`vehicle`) USING BTREE,
INDEX `i_vehicle`(`vehicle
_id
`) USING BTREE,
INDEX `i_book_user`(`book_user`) USING BTREE,
INDEX `i_book_user`(`book_user`) USING BTREE,
INDEX `i_book_end_date`(`book_end_date`) USING BTREE COMMENT '迁移至历史表时查询用到该索引(暂时)'
INDEX `i_book_end_date`(`book_end_date`) USING BTREE COMMENT '迁移至历史表时查询用到该索引(暂时)'
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '汽车预定记录历史表,按年分表' ROW_FORMAT = Dynamic;
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '汽车预定记录历史表,按年分表' ROW_FORMAT = Dynamic;
...
...
xx-vehicle/xx-vehicle-server/src/main/resources/mapper/VehicleMapper.xml
View file @
9a44ae1a
...
@@ -3,15 +3,17 @@
...
@@ -3,15 +3,17 @@
<mapper
namespace=
"com.xxfc.platform.vehicle.mapper.VehicleMapper"
>
<mapper
namespace=
"com.xxfc.platform.vehicle.mapper.VehicleMapper"
>
<resultMap
id=
"searchUsableModelMap"
type=
"com.xxfc.platform.vehicle.pojo.UsableVehicleModelVO"
>
<resultMap
id=
"searchUsableModelMap"
type=
"com.xxfc.platform.vehicle.pojo.UsableVehicleModelVO"
>
<!-- <collection column="company_id" property="id" ofType="com.xxfc.platform.vehicle.entity.BranchCompany" select="com.xxfc.platform.vehicle.mapper.BranchCompanyMapper.selectByPrimaryKey" />-->
<!-- <collection column="company_id" property="id" ofType="com.xxfc.platform.vehicle.entity.BranchCompany" select="com.xxfc.platform.vehicle.mapper.BranchCompanyMapper.selectByPrimaryKey" />-->
<!-- <result column="company_id" property="companyId" jdbcType="VARCHAR" javaType="java.lang.Integer"/>-->
<!-- <result column="company_id" property="companyId" jdbcType="VARCHAR" javaType="java.lang.Integer"/>-->
<!-- <result column="model_id" property="modelId" jdbcType="INTEGER" javaType="java.lang.Integer"/>-->
<!-- <result column="model_id" property="modelId" jdbcType="INTEGER" javaType="java.lang.Integer"/>-->
<!-- <result column="vehicle_id" property="modelId" jdbcType="INTEGER" javaType="java.lang.Integer"/>-->
<!-- <result column="vehicle_id" property="modelId" jdbcType="INTEGER" javaType="java.lang.Integer"/>-->
<association
property=
"company"
column=
"company_id"
select=
"com.xxfc.platform.vehicle.mapper.BranchCompanyMapper.selectByPrimaryKey"
/>
<association
property=
"company"
column=
"company_id"
<association
property=
"vehicleModel"
column=
"model_id"
select=
"com.xxfc.platform.vehicle.mapper.VehicleModelMapper.selectByPrimaryKey"
/>
select=
"com.xxfc.platform.vehicle.mapper.BranchCompanyMapper.selectByPrimaryKey"
/>
<!-- <association property="vehicle" column="vehicle_id" select="com.xxfc.platform.vehicle.mapper.VehicleMapper.selectByPrimaryKey" />-->
<association
property=
"vehicleModel"
column=
"model_id"
select=
"com.xxfc.platform.vehicle.mapper.VehicleModelMapper.selectByPrimaryKey"
/>
<!-- <association property="vehicle" column="vehicle_id" select="com.xxfc.platform.vehicle.mapper.VehicleMapper.selectByPrimaryKey" />-->
</resultMap>
</resultMap>
<update
id=
"updateStatusById"
parameterType=
"java.util.Map"
>
<update
id=
"updateStatusById"
parameterType=
"java.util.Map"
>
update vehicle set status = #{status} where id in
update vehicle set status = #{status} where id in
<foreach
collection=
"idList"
index=
"i"
item=
"item"
separator=
","
open=
"("
close=
")"
>
<foreach
collection=
"idList"
index=
"i"
item=
"item"
separator=
","
open=
"("
close=
")"
>
...
@@ -255,7 +257,8 @@
...
@@ -255,7 +257,8 @@
<include
refid=
"searchUsableSql"
/>
<include
refid=
"searchUsableSql"
/>
GROUP BY model_id, company_id
<if
test=
"lon != null and lat != null"
>
, distance
</if>
GROUP BY model_id, company_id
<if
test=
"lon != null and lat != null"
>
, distance
</if>
<!-- 循环 相同父级 数据做并集, 不同父级做或集 -->
<!-- 循环 相同父级 数据做并集, 不同父级做或集 -->
<if
test=
" catas != null "
>
<if
test=
" catas != null "
>
...
@@ -295,6 +298,109 @@
...
@@ -295,6 +298,109 @@
</if>
</if>
</select>
</select>
<select
id=
"countVehicleByParam"
parameterType=
"com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto"
resultType=
"com.xxfc.platform.vehicle.pojo.VehicleCountVo"
>
SELECT count(*) total ,
CASE
WHEN travel_status = 1 THEN
'1'
WHEN travel_status = 2 THEN
'2'
WHEN travel_status = 3 THEN
'3'
WHEN travel_status = 4 THEN
'4'
ELSE
'-1'
END travel_status,
CASE
WHEN travel_status = 1 THEN
'出行中'
WHEN travel_status = 2 THEN
'预约中'
WHEN travel_status = 3 THEN
'空闲中'
WHEN travel_status = 4 THEN
'保养中'
ELSE
'不可用'
END detail
from vehicle v1 GROUP BY travel_status
<where>
<if
test=
"startTime != null"
>
and v1.update_time between startTime and endTime
</if>
<if
test=
"numberPlate != null"
>
and v1.number_plate = #{numberPlate}
</if>
<if
test=
"status != null"
>
and v1.status = #{status}
</if>
<if
test=
"subordinateBranch != null"
>
and v1.subordinate_branch = #{subordinateBranch}
</if>
<if
test=
"parkBranchCompanyId != null"
>
and v1.park_branch_company_id = #{parkBranchCompanyId}
</if>
</where>
union all
SELECT count(*) total, '0' travel_status, '总数' detail from vehicle v2
<where>
<if
test=
"startTime != null"
>
and v2.update_time between startTime and endTime
</if>
<if
test=
"numberPlate != null"
>
and v2.number_plate = #{numberPlate}
</if>
<if
test=
"status != null"
>
and v2.status = #{status}
</if>
<if
test=
"subordinateBranch != null"
>
and v2.subordinate_branch = #{subordinateBranch}
</if>
<if
test=
"parkBranchCompanyId != null"
>
and v2.park_branch_company_id = #{parkBranchCompanyId}
</if>
</where>
union all
SELECT count(*) total,
CASE
WHEN status = 1 THEN
'5'
WHEN status = 2 THEN
'6'
ELSE
'7'
END travel_status,
CASE
WHEN status = 1 THEN
'正常运行'
WHEN status = 2 THEN
'维修'
ELSE
'报废'
END travel_status
FROM vehicle v3 GROUP BY status
<where>
<if
test=
"startTime != null"
>
and v3.update_time between startTime and endTime
</if>
<if
test=
"numberPlate != null"
>
and v3.number_plate = #{numberPlate}
</if>
<if
test=
"status != null"
>
and v3.status = #{status}
</if>
<if
test=
"subordinateBranch != null"
>
and v3.subordinate_branch = #{subordinateBranch}
</if>
<if
test=
"parkBranchCompanyId != null"
>
and v3.park_branch_company_id = #{parkBranchCompanyId}
</if>
</where>
</select>
<sql
id=
"searchUsableSql"
>
<sql
id=
"searchUsableSql"
>
from vehicle v
from vehicle v
<if
test=
" yearMonthAndParam !=null "
>
<if
test=
" yearMonthAndParam !=null "
>
...
@@ -302,7 +408,7 @@
...
@@ -302,7 +408,7 @@
vehicle_book_info vbi on v.`id` = vbi.vehicle
vehicle_book_info vbi on v.`id` = vbi.vehicle
</if>
</if>
left join vehicle_model vm on v.model_id = vm.id
left join vehicle_model vm on v.model_id = vm.id
left join branch_company bc on v.park_branch_company_id =
bc.id
left join branch_company bc on v.park_branch_company_id = bc.id
<if
test=
" catas != null "
>
<if
test=
" catas != null "
>
left join vehicle_cata vc on vm.id = vc.vehicle_model_id
left join vehicle_cata vc on vm.id = vc.vehicle_model_id
</if>
</if>
...
@@ -312,7 +418,8 @@
...
@@ -312,7 +418,8 @@
<foreach
collection=
"yearMonthAndParam"
index=
"yearMonth"
item=
"andOperation"
>
<foreach
collection=
"yearMonthAndParam"
index=
"yearMonth"
item=
"andOperation"
>
and
and
( (vbi.`year_month` = #{yearMonth} or vbi.`year_month` is null) and
( (vbi.`year_month` = #{yearMonth} or vbi.`year_month` is null) and
ifnull(vbi.`booked_date`,0)
&
#{andOperation.andOperationFactor} = #{andOperation.andOperationRs}
ifnull(vbi.`booked_date`,0)
&
#{andOperation.andOperationFactor} =
#{andOperation.andOperationRs}
)
)
</foreach>
</foreach>
</if>
</if>
...
...
xx-vehicle/xx-vehicle-server/src/main/resources/mapper/VehicleWarningMsgMapper.xml
View file @
9a44ae1a
...
@@ -20,8 +20,35 @@
...
@@ -20,8 +20,35 @@
</select>
</select>
<select
id=
"getMsgByVehicle"
parameterType=
"String"
resultType=
"com.xxfc.platform.vehicle.entity.VehicleWarningMsg"
>
<select
id=
"getMsgByVehicle"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.entity.VehicleWarningMsg"
>
select id, type, status, msg, rule_id, msg_key, vehicle_id, create_time, update_time, remark from vehicle_warning_msg where vehicle_id = #{_parameter}
select id, type, status, msg, rule_id, msg_key, vehicle_id, create_time, update_time, remark from vehicle_warning_msg
where vehicle_id = #{_parameter}
</select>
<select
id=
"getAllByparam"
parameterType=
"com.xxfc.platform.vehicle.pojo.dto.VehiclePlanDto"
resultType=
"com.xxfc.platform.vehicle.entity.VehicleWarningMsg"
>
select w.*
from vehicle_warning_msg w
left join vehicle v on w.vehicle_id = v.id
<where>
<if
test=
"vehicleId != null"
>
and w.vehicle_id = #{vehicleId}
</if>
<if
test=
"startTime != null"
>
and w.create_time between startTime and endTime
</if>
<if
test=
"numberPlate != null"
>
and v.number_plate = #{numberPlate}
</if>
<if
test=
"status != null"
>
and v.status = #{status}
</if>
<if
test=
"subordinateBranch != null"
>
and v.subordinate_branch = #{subordinateBranch}
</if>
<if
test=
"parkBranchCompanyId != null"
>
and v.park_branch_company_id = #{parkBranchCompanyId}
</if>
</where>
</select>
</select>
...
...
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