更新新建工单相关功能
This commit is contained in:
parent
309b6484c9
commit
d11d1389a3
@ -44,4 +44,6 @@ public class CarMainRespVO extends CarMain {
|
||||
List<String> brandAndModel;
|
||||
/** 车辆类型 */
|
||||
private String brandType;
|
||||
/** 车辆logo */
|
||||
private String logoImg;
|
||||
}
|
@ -36,6 +36,7 @@
|
||||
SELECT
|
||||
<include refid="baseCarMainColumn"></include>,
|
||||
bcb.brand_name AS brandStr,
|
||||
bcb.logo_img AS logoImg,
|
||||
bcm.model_name AS modelStr
|
||||
FROM
|
||||
`base_car_main` tbcm
|
||||
@ -73,6 +74,9 @@
|
||||
<if test="dto.engineNumber != null and dto.engineNumber != ''">
|
||||
AND tbcm.engine_number LIKE CONCAT('%',#{dto.engineNumber},'%')
|
||||
</if>
|
||||
<if test="dto.userId != null and dto.userId != ''">
|
||||
AND tbcm.user_id = #{dto.userId}
|
||||
</if>
|
||||
ORDER BY
|
||||
tbcm.car_register_date DESC
|
||||
</select>
|
||||
|
Loading…
Reference in New Issue
Block a user