@@ -18,7 +18,7 @@ public class ProjectFilterVo {
*/
private Integer projectType;
- private Integer hasOnchain;
+ private Boolean isOnchain;
// 分页参数
private Integer pageNum = 1; // 当前页码
@@ -47,7 +47,7 @@
<if test="projectType != null and projectType != 0">
AND project_type = #{projectType}
</if>
- <if test="hasOnchain != null and hasOnchain == 1">
+ <if test="isOnchain != null and isOnchain==true">
AND on_chain_num > 0