添加“face”相关CRUD代码

This commit is contained in:
longbinbin
2024-11-29 15:36:54 +08:00
parent 5f83e732e9
commit 33c573b782
7 changed files with 208 additions and 0 deletions

View File

@ -39,6 +39,12 @@
<if test="scenicId!= null and scenicId!= ''">
and scenic_id = #{scenicId}
</if>
<if test="startTime!=null">
and d.create_at >= #{startTime}
</if>
<if test="endTime!=null">
and d.create_at &lt;= #{endTime}
</if>
</where>
</select>
<select id="getById" resultType="com.ycwl.basic.model.pc.device.resp.DeviceRespVO">