设备分享3

This commit is contained in:
2025-09-09 17:01:51 +08:00
parent 5e3307d2b0
commit 801b0267e6
5 changed files with 53 additions and 5 deletions

View File

@ -60,7 +60,7 @@ public class AppDeviceShareBo extends BaseEntity {
/**
* 分享时间
*/
private Date shareStartTime;
private Date shareEndTime;
private String shareStartTime;
private String shareEndTime;
}

View File

@ -109,4 +109,9 @@ public class AppDeviceShareVo implements Serializable {
* 告警状态(0解除告警1告警)
*/
private String alarmStatus;
/**
* 创建时间
*/
private String createTime;
}

View File

@ -72,9 +72,12 @@
and ad.device_id = #{bo.deviceId}
</if>
<if test="bo.shareUser != null">
and u.user_name = #{bo.shareUser}
and ad.phonenumber like concat('%',#{bo.shareUser},'%')
</if>
<if test="bo.shareStartTime != null and bo.hareEndTime != null">
<if test="bo.phonenumber != null">
and ad.phonenumber like concat('%',#{bo.phonenumber},'%')
</if>
<if test="bo.shareStartTime != null and bo.shareEndTime != null">
and ad.create_time between #{bo.shareStartTime} and #{bo.shareEndTime}
</if>
</where>