|
@@ -11,7 +11,7 @@ import java.util.Set;
|
|
|
public interface ExamOrganizationRelationDao extends BaseDAO<Long, ExamOrganizationRelation> {
|
|
|
|
|
|
/**
|
|
|
- * @describe 批量插入考级项目与代理关联
|
|
|
+ * @describe 批量插入考级项目与合作单位关联
|
|
|
* @author Joburgess
|
|
|
* @date 2020.06.18
|
|
|
* @param examOrganizationRelations:
|
|
@@ -20,11 +20,11 @@ public interface ExamOrganizationRelationDao extends BaseDAO<Long, ExamOrganizat
|
|
|
int batchInsert(@Param("examOrganizationRelations") List<ExamOrganizationRelation> examOrganizationRelations);
|
|
|
|
|
|
/**
|
|
|
- * @describe 批量更新代理商的链接发送状态
|
|
|
+ * @describe 批量更新合作单位的链接发送状态
|
|
|
* @author Joburgess
|
|
|
* @date 2020.06.18
|
|
|
* @param examId: 考级项目编号
|
|
|
- * @param organIds: 代理商编号列表
|
|
|
+ * @param organIds: 合作单位编号列表
|
|
|
* @param sendUrlFlag: 链接发送状态
|
|
|
* @return int
|
|
|
*/
|
|
@@ -33,7 +33,7 @@ public interface ExamOrganizationRelationDao extends BaseDAO<Long, ExamOrganizat
|
|
|
@Param("sendUrlFlag")YesOrNoEnum sendUrlFlag);
|
|
|
|
|
|
/**
|
|
|
- * @describe 获取考级项目关联的代理商
|
|
|
+ * @describe 获取考级项目关联的合作单位
|
|
|
* @author Joburgess
|
|
|
* @date 2020.06.18
|
|
|
* @param examId:
|
|
@@ -42,7 +42,7 @@ public interface ExamOrganizationRelationDao extends BaseDAO<Long, ExamOrganizat
|
|
|
List<ExamOrganizationRelation> getWithExam(@Param("examId") Integer examId);
|
|
|
|
|
|
/**
|
|
|
- * @describe 获取考级项目关联的代理商编号
|
|
|
+ * @describe 获取考级项目关联的合作单位编号
|
|
|
* @author Joburgess
|
|
|
* @date 2020.06.18
|
|
|
* @param examId:
|