| | |
| | | <if test="state !=null and state != ''"> |
| | | , t.state= #{state} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | , t.community_id= #{communityId} |
| | | </if> |
| | | <if test="pageName !=null and pageName != ''"> |
| | | , t.page_name= #{pageName} |
| | | </if> |
| | | where 1=1 |
| | | <if test="queryStatusCd !=null and queryStatusCd != ''"> |
| | | and t.status_cd= #{queryStatusCd} |
| | | </if> |
| | | <if test="pageId !=null and pageId != ''"> |
| | | and t.page_id= #{pageId} |
| | | </if> |
| | | <if test="communityId !=null and communityId != ''"> |
| | | and t.community_id= #{communityId} |
| | | </if> |
| | | |
| | | </update> |
| | | |