ElecLicenseInfoDao.java
1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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);
}