forked from kidgrow-microservices-platform

zhaoxiaohao
2020-04-26 fc223b26f87f7a221b38084bb62d8047974bbf1c
kidgrow-business/kidgrow-opration-center/kidgrow-opration-center-biz/src/main/resources/mapper/DataNeedMapper.xml
@@ -34,10 +34,10 @@
                and doctor_tel = #{p.doctorTel}
            </if>
            <if test="p.needBegintime != null and p.needBegintime !=''">
                and need_begintime = #{p.needBegintime}
                and need_begintime &gt;= #{p.needBegintime}
            </if>
            <if test="p.needEndtime != null and p.needEndtime !=''">
                and need_endtime = #{p.needEndtime}
                and need_endtime &lt;= #{p.needEndtime}
            </if>
            <if test="p.needTags != null and p.needTags !=''">
                and need_tags = #{p.needTags}
@@ -82,6 +82,7 @@
        from data_need
        <include refid="where"/>
        order by id desc
        limit 1
    </select>
    <!--定义根据-DataNeed当作查询条件返回对象集合-->