feat: bug-528 app端添加管理功能
This commit is contained in:
parent
63e1581a5e
commit
5b74e604ab
|
|
@ -15,6 +15,9 @@ public class SearchDeviceRequest extends PageRequest {
|
|||
// 设备型号
|
||||
private String modelNo;
|
||||
|
||||
// 设备编号或设备型号
|
||||
private String key;
|
||||
|
||||
//开始时间
|
||||
private LocalDate startTime;
|
||||
|
||||
|
|
|
|||
|
|
@ -86,6 +86,9 @@
|
|||
<if test="request.endTime!=null and request.endTime!=''">
|
||||
and d.shipment_date <= #{request.endTime}
|
||||
</if>
|
||||
<if test="request.key!=null and request.key!=''">
|
||||
and (d.device_no LIKE concat('%', #{request.key}, '%') or d.model_no LIKE concat('%', #{request.key}, '%'))
|
||||
</if>
|
||||
</select>
|
||||
<!--定时任务-质保未开始-->
|
||||
<update id="taskWarrantyStateNotStarted">
|
||||
|
|
|
|||
Loading…
Reference in New Issue