jinlin
2024-01-02 a38a1ac77bb6ac9ea8bf0cf5f5f6b68d0e6e6974
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.zt.life.modules.qaAuditReport.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.life.modules.qaAuditReport.model.QaAuditReportIncongruent;
import org.apache.ibatis.annotations.Mapper;
 
 
import java.util.List;
import java.util.Map;
 
 
/**
 * qa_audit_report_incongruent
 *
 * @author zt generator 
 * @since 1.0.0 2023-12-29
 */
@Mapper
public interface QaAuditReportIncongruentDao extends BaseDao<QaAuditReportIncongruent> {
 
    List<QaAuditReportIncongruent> getList(Map<String, Object> params);
 
    List<QaAuditReportIncongruent> createList(Long projectId);
}