ElecLicenseInfoMapper.java 973 Bytes
package com.pashanhoo.qys.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.pashanhoo.qys.entity.ElecLicenseInfoDo;
import org.apache.ibatis.annotations.Param;

import java.util.List;

public interface ElecLicenseInfoMapper extends BaseMapper<ElecLicenseInfoDo> {

 List<ElecLicenseInfoDo> getEciInfoByZsbs(String zsbs);


 List<ElecLicenseInfoDo> getDocumentIdIsNull(String ywh);
 /**
  * 获取合同文档ID已经入库并且还未下载集合
  *
  * @return
  */
 List<ElecLicenseInfoDo> getWaitForDownload(String ywh);
 /**
  * 获取已经下载还未转换的集合
  *
  * @return
  */
 List<ElecLicenseInfoDo> getWaitForConvert(String ywh);
/**
 * 根据业务号和不动产单元号查询义务人名称
 */
 List<String>  getYwrMcByCOnditon(@Param("ywh")String ywh, @Param("bdcdyh")String bdcdyh);


 void updateEciInfo(@Param("bizId")String bizId);


 ElecLicenseInfoDo getElecLicenseInfo(ElecLicenseInfoDo elecLicenseInfoDo);




}