Commit 37d4942f by 王军业

02455154

1 parent 952ceb30
......@@ -19,6 +19,6 @@ public interface ContractMapper {
List<String> queryList();
List<ContractVo> selectByCondition(SelectVo selectVo);
int count(SelectVo selectVo);
boolean isDelete(String contract_unid);
Boolean isDelete(String contract_unid);
List<ExportModel> exportContracts(SelectVo selectVo);
}
......@@ -672,7 +672,7 @@
</select>
<select id="isDelete" parameterType="String" resultType="boolean">
<select id="isDelete" parameterType="String" resultType="Boolean">
select is_delete from tb_contract where contract_unid = #{contract_unid}
</select>
<select id="queryList" resultType="String">
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!