添加“task”相关CRUD代码

This commit is contained in:
longbinbin
2024-12-02 14:28:29 +08:00
parent ccaeada98b
commit c62d2c2f70
16 changed files with 282 additions and 3 deletions

View File

@ -90,6 +90,12 @@
<if test="status!=null">
and `status` = #{status}
</if>
<if test="startTime!=null">
and s.create_time &gt;= #{startTime}
</if>
<if test="endTime!=null">
and s.create_time &lt;= #{endTime}
</if>
</where>
</select>
<select id="getById" resultMap="scenicAndConfig">