| | |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | <if test="states !=null "> |
| | | and t.state in |
| | | <foreach collection="states" item="item" open="(" close=")" separator=","> |
| | | #{item} |
| | | </foreach> |
| | | </if> |
| | | <if test="hours !=null and hours != ''"> |
| | | and t.hours= #{hours} |
| | | </if> |
| | |
| | | <if test="spaceId !=null and spaceId != ''"> |
| | | , t.space_id= #{spaceId} |
| | | </if> |
| | | <if test="cspId !=null and cspId != ''"> |
| | | , t.csp_id= #{cspId} |
| | | </if> |
| | | |
| | | <if test="state !=null and state != ''"> |
| | | , t.state = #{state} |
| | | </if> |
| | |
| | | <if test="timeId !=null and timeId != ''"> |
| | | and t.time_id= #{timeId} |
| | | </if> |
| | | <if test="cspId !=null and cspId != ''"> |
| | | and t.csp_id= #{cspId} |
| | | </if> |
| | | |
| | | </update> |
| | | |