|
@@ -1,5 +1,7 @@
|
|
|
package com.ym.mec.biz.dal.dao;
|
|
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
+
|
|
|
import com.ym.mec.biz.dal.entity.OrganizationCourseUnitPriceSettings;
|
|
|
import com.ym.mec.biz.dal.entity.CourseSchedule.CourseScheduleType;
|
|
|
import com.ym.mec.common.dal.BaseDAO;
|
|
@@ -12,5 +14,5 @@ public interface OrganizationCourseUnitPriceSettingsDao extends BaseDAO<Integer,
|
|
|
* @param courseType 课程类型
|
|
|
* @return
|
|
|
*/
|
|
|
- OrganizationCourseUnitPriceSettings queryByOrganIdAndCourseType(Integer organId, CourseScheduleType courseType);
|
|
|
+ OrganizationCourseUnitPriceSettings queryByOrganIdAndCourseType(@Param("organId") Integer organId, @Param("courseType") CourseScheduleType courseType);
|
|
|
}
|