提交 d154711f 作者: zhangqiliang

服务商列表查询报错的问题

父级 cd856b8f
......@@ -394,7 +394,13 @@
<if test="hasContract != null"><!-- 是否签了合同 -->
) as tt
</if>
group by tt.id
<if test="hasContract != null and hasContract==0"><!-- 未签合同 -->
where tt.validContractId is null
group by tt.id
</if>
<if test="hasContract != null and hasContract!=0"><!-- 签了合同 -->
group by tt.id
</if>
</select>
<select id="selectInProcessOrder"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论