加入时间

This commit is contained in:
苏竹红
2024-04-02 11:09:17 +08:00
parent 0f0eb534be
commit b9c2947a08
5 changed files with 32 additions and 1 deletions

View File

@@ -113,5 +113,17 @@
and deleted = 0
</select>
<select id="getByLineIds" resultType="com.cool.store.entity.MemberQuestionDO">
select
<include refid="Base_Column_List"/>
from xfsg_member_question_info
where deleted = 0
<if test="lineIds !=null and lineIds.size>0">
<foreach collection="lineIds" item="lineId" open="and line_id in (" close=")" separator=",">
#{lineId}
</foreach>
</if>
</select>
</mapper>