|
30 | 30 | <if test="imageUrl!=null and imageUrl!=''"> |
31 | 31 | AND image_url = #{imageUrl} |
32 | 32 | </if> |
33 | | - <if test="isPublish!=null and isPublish!=''"> |
| 33 | + <if test="isPublish!=null"> |
34 | 34 | AND published = #{isPublish} |
35 | 35 | </if> |
36 | 36 | <if test="latestVersion!=null and latestVersion!=''"> |
|
48 | 48 | <if test="description!=null and description!=''"> |
49 | 49 | AND description = #{description} |
50 | 50 | </if> |
51 | | - <if test="isOfficial!=null and isOfficial!=''"> |
| 51 | + <if test="isOfficial!=null"> |
52 | 52 | AND is_official = #{isOfficial} |
53 | 53 | </if> |
54 | | - <if test="isDefault!=null and isDefault!=''"> |
| 54 | + <if test="isDefault!=null"> |
55 | 55 | AND is_default = #{isDefault} |
56 | 56 | </if> |
57 | | - <if test="isTinyReserved!=null and isTinyReserved!=''"> |
| 57 | + <if test="isTinyReserved!=null"> |
58 | 58 | AND tiny_reserved = #{isTinyReserved} |
59 | 59 | </if> |
60 | 60 | <if test="componentLibraryId!=null and componentLibraryId!=''"> |
|
115 | 115 | <if test="imageUrl!=null and imageUrl!=''"> |
116 | 116 | image_url = #{imageUrl}, |
117 | 117 | </if> |
118 | | - <if test="isPublish!=null and isPublish!=''"> |
| 118 | + <if test="isPublish!=null"> |
119 | 119 | published = #{isPublish}, |
120 | 120 | </if> |
121 | 121 | <if test="latestVersion!=null and latestVersion!=''"> |
|
133 | 133 | <if test="description!=null and description!=''"> |
134 | 134 | description = #{description}, |
135 | 135 | </if> |
136 | | - <if test="isOfficial!=null and isOfficial!=''"> |
| 136 | + <if test="isOfficial!=null"> |
137 | 137 | is_official = #{isOfficial}, |
138 | 138 | </if> |
139 | | - <if test="isDefault!=null and isDefault!=''"> |
| 139 | + <if test="isDefault!=null"> |
140 | 140 | is_default = #{isDefault}, |
141 | 141 | </if> |
142 | | - <if test="isTinyReserved!=null and isTinyReserved!=''"> |
| 142 | + <if test="isTinyReserved!=null"> |
143 | 143 | tiny_reserved = #{isTinyReserved}, |
144 | 144 | </if> |
145 | 145 | <if test="componentLibraryId!=null and componentLibraryId!=''"> |
|
0 commit comments