ElecLicenseInfoDao.java 1.86 KB
package com.thinkgem.jeesite.modules.eci.dao;

import com.thinkgem.jeesite.common.persistence.CrudDao;
import com.thinkgem.jeesite.common.persistence.annotation.MyBatisDao;
import com.thinkgem.jeesite.modules.eci.entity.ElecLicenseInfo;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

import java.util.Collection;
import java.util.List;
import java.util.Map;

@MyBatisDao
public interface ElecLicenseInfoDao extends CrudDao<ElecLicenseInfo> {

    /**
     * 获取需要创建合同contractId为空的集合
     *
     * @return
     */
    List<ElecLicenseInfo> getContractIdIsNull();

    /**
     * 更新合同ID和状态
     *
     * @param waitForCreateContract
     * @return
     */
    Integer updateContractIdAndStatus(@Param("waitForCreateContract") ElecLicenseInfo waitForCreateContract);

    /**
     * 获取需要更新合同DOUCUMENT_ID为空的集合
     *
     * @return
     */
    List<ElecLicenseInfo> getDocumentIdIsNull();

    /**
     * 更新合同文档ID
     *
     * @param bizId      主键
     * @param documentId 文档ID
     * @return
     */
    Integer updateDocumentId(@Param("bizId") String bizId, @Param("documentId") Long documentId);

    /**
     * 获取合同文档ID已经入库并且还未下载集合
     *
     * @return
     */
    List<ElecLicenseInfo> getWaitForDownload();

    /**
     * 更新OFD文件地址和下载状态
     *
     * @param bizId
     * @param ofdPath
     * @return
     */
    Integer updateOfdWjdz(@Param("bizId") String bizId, @Param("ofdPath") String ofdPath);

    /**
     * 获取已经下载还未转换的集合
     *
     * @return
     */
    List<ElecLicenseInfo> getWaitForConvert();


    List<ElecLicenseInfo> selectZsbs(@Param("zsbs") String zsbs);

    Integer updateJpgWjdzAndStatus(@Param("jpgPath") String jpgPath, @Param("bizId") String bizId);
}