|
@@ -7,6 +7,8 @@ import com.jeeplus.assess.program.configuration.projectList.service.dto.ProgramA
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* @Entity com.jeeplus.test.program.configuration.projectList.domain.ProgramAudit
|
|
|
*/
|
|
@@ -17,6 +19,13 @@ public interface ProgramAuditMapper extends BaseMapper<ProgramAudit> {
|
|
|
ProgramAuditDto findByIdAudit(String id);
|
|
|
|
|
|
String findIdByProIdAndLevel(@Param("programId") String programId, @Param("auditLevel") String auditLevel);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据项目id去查询校审的id(一、二、三)
|
|
|
+ * @param programId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ List<String> getIDsByProId(@Param("programId")String programId);
|
|
|
}
|
|
|
|
|
|
|