liusheng
2025-03-06 7aa87d2ffab20f73ffba7384c67d4bbb659aa6a3
smartor/src/main/resources/mapper/smartor/ServiceSubtaskMapper.xml
@@ -282,6 +282,17 @@
        <!-- order by update_time desc,id desc -->
    </select>
    <select id="selectServiceSubtaskListByCreateTime" parameterType="com.smartor.domain.ServiceSubtaskVO"
            resultMap="ServiceSubtaskResult">
        <include refid="selectServiceSubtaskVo"/>
        <where>
            del_flag=0
            <if test="createStartTime != null  and createEndTime != null">create_time BETWEEN #{createStartTime} AND #{createEndTime}</if>
            <if test="createBy != null ">and create_by = #{createBy}</if>
        </where>
    </select>
    <select id="selectServiceSubtaskById" parameterType="Long" resultMap="ServiceSubtaskResult">
        <include refid="selectServiceSubtaskVo"/>
        where id = #{id}