|
22 | 22 | <if test="appWebsite!=null and appWebsite!=''"> |
23 | 23 | AND app_website = #{appWebsite} |
24 | 24 | </if> |
25 | | - <if test="platformId!=null and platformId!=''"> |
| 25 | + <if test="platformId!=null"> |
26 | 26 | AND platform_id = #{platformId} |
27 | 27 | </if> |
28 | | - <if test="platformHistoryId!=null and platformHistoryId!=''"> |
| 28 | + <if test="platformHistoryId!=null"> |
29 | 29 | AND platform_history_id = #{platformHistoryId} |
30 | 30 | </if> |
31 | 31 | <if test="publishUrl!=null and publishUrl!=''"> |
|
46 | 46 | <if test="state!=null and state!=''"> |
47 | 47 | AND state = #{state} |
48 | 48 | </if> |
49 | | - <if test="isPublish!=null and isPublish!=''"> |
| 49 | + <if test="isPublish!=null"> |
50 | 50 | AND published = #{isPublish} |
51 | 51 | </if> |
52 | | - <if test="homePage!=null and homePage!=''"> |
| 52 | + <if test="homePage!=null"> |
53 | 53 | AND home_page_id = #{homePage} |
54 | 54 | </if> |
55 | 55 | <if test="css!=null and css!=''"> |
|
79 | 79 | <if test="branch!=null and branch!=''"> |
80 | 80 | AND branch = #{branch} |
81 | 81 | </if> |
82 | | - <if test="isDemo!=null and isDemo!=''"> |
| 82 | + <if test="isDemo!=null"> |
83 | 83 | AND is_demo = #{isDemo} |
84 | 84 | </if> |
85 | 85 | <if test="isDefault!=null"> |
|
88 | 88 | <if test="templateType!=null and templateType!=''"> |
89 | 89 | AND template_type = #{templateType} |
90 | 90 | </if> |
91 | | - <if test="setTemplateTime!=null and setTemplateTime!=''"> |
| 91 | + <if test="setTemplateTime!=null"> |
92 | 92 | AND set_template_time = #{setTemplateTime} |
93 | 93 | </if> |
94 | 94 | <if test="setTemplateBy!=null and setTemplateBy!=''"> |
|
124 | 124 | <if test="lastUpdatedBy!=null and lastUpdatedBy!=''"> |
125 | 125 | AND last_updated_by = #{lastUpdatedBy} |
126 | 126 | </if> |
127 | | - <if test="createdTime!=null and createdTime!=''"> |
| 127 | + <if test="createdTime!=null"> |
128 | 128 | AND created_time = #{createdTime} |
129 | 129 | </if> |
130 | | - <if test="lastUpdatedTime!=null and lastUpdatedTime!=''"> |
| 130 | + <if test="lastUpdatedTime!=null"> |
131 | 131 | AND last_updated_time = #{lastUpdatedTime} |
132 | 132 | </if> |
133 | 133 | <if test="tenantId!=null and tenantId!=''"> |
|
149 | 149 | <if test="appWebsite!=null and appWebsite!=''"> |
150 | 150 | app_website = #{appWebsite}, |
151 | 151 | </if> |
152 | | - <if test="platformId!=null and platformId!=''"> |
| 152 | + <if test="platformId!=null"> |
153 | 153 | platform_id = #{platformId}, |
154 | 154 | </if> |
155 | | - <if test="platformHistoryId!=null and platformHistoryId!=''"> |
| 155 | + <if test="platformHistoryId!=null"> |
156 | 156 | platform_history_id = #{platformHistoryId}, |
157 | 157 | </if> |
158 | 158 | <if test="publishUrl!=null and publishUrl!=''"> |
|
176 | 176 | <if test="isPublish!=null"> |
177 | 177 | published = #{isPublish}, |
178 | 178 | </if> |
179 | | - <if test="homePage!=null and homePage!=''"> |
| 179 | + <if test="homePage!=null"> |
180 | 180 | home_page_id = #{homePage}, |
181 | 181 | </if> |
182 | 182 | <if test="css!=null and css!=''"> |
|
215 | 215 | <if test="templateType!=null and templateType!=''"> |
216 | 216 | template_type = #{templateType}, |
217 | 217 | </if> |
218 | | - <if test="setTemplateTime!=null and setTemplateTime!=''"> |
| 218 | + <if test="setTemplateTime!=null"> |
219 | 219 | set_template_time = #{setTemplateTime}, |
220 | 220 | </if> |
221 | 221 | <if test="setTemplateBy!=null and setTemplateBy!=''"> |
|
251 | 251 | <if test="lastUpdatedBy!=null and lastUpdatedBy!=''"> |
252 | 252 | last_updated_by = #{lastUpdatedBy}, |
253 | 253 | </if> |
254 | | - <if test="createdTime!=null and createdTime!=''"> |
| 254 | + <if test="createdTime!=null"> |
255 | 255 | created_time = #{createdTime}, |
256 | 256 | </if> |
257 | | - <if test="lastUpdatedTime!=null and lastUpdatedTime!=''"> |
| 257 | + <if test="lastUpdatedTime!=null"> |
258 | 258 | last_updated_time = #{lastUpdatedTime}, |
259 | 259 | </if> |
260 | 260 | <if test="tenantId!=null and tenantId!=''"> |
|
0 commit comments