考核功能接口新增。
This commit is contained in:
parent
3213e9babb
commit
dad3752bd1
@ -354,6 +354,17 @@
|
||||
<if test="gender != null and gender !=''">
|
||||
AND t1.gender = #{gender}
|
||||
</if>
|
||||
<if test="userIds != null and userIds != ''">
|
||||
AND t1.creator IN (${userIds})
|
||||
</if>
|
||||
<if test="startTime != null and startTime != ''">
|
||||
AND
|
||||
t1.gmt_create <![CDATA[ >= ]]> #{startTime}
|
||||
</if>
|
||||
<if test="endTime != null and endTime != ''">
|
||||
AND
|
||||
t1.gmt_create <![CDATA[ <= ]]> #{endTime}
|
||||
</if>
|
||||
</select>
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue
Block a user