xuhy
2025-05-09 202729432866117778bc1c20315a06aa84fee98e
ruoyi-system/src/main/resources/mapper/system/TProjectTeamMapper.xml
@@ -24,11 +24,11 @@
        <include refid="Base_Column_List" />
        FROM t_project_team
        <where>
            <if test="teamName != null and teamName != ''">
                AND team_name LIKE CONCAT('%', #{teamName}, '%')
            <if test="query.teamName != null and query.teamName != ''">
                AND team_name LIKE CONCAT('%', #{query.teamName}, '%')
            </if>
            <if test="personCharge != null and personCharge != ''">
                AND person_charge LIKE CONCAT('%', #{personCharge}, '%')
            <if test="query.personCharge != null and query.personCharge != ''">
                AND person_charge LIKE CONCAT('%', #{query.personCharge}, '%')
            </if>
            <if test="query.startTime != null and query.startTime != '' and query.endTime != null and query.endTime != ''">
                AND create_time BETWEEN #{query.startTime} AND #{query.endTime}