|
@@ -6,8 +6,11 @@
|
|
select dlf.*,s.name_ subjectName from degree_level_fee dlf
|
|
select dlf.*,s.name_ subjectName from degree_level_fee dlf
|
|
left join subject s ON dlf.subject_id_ = s.id_
|
|
left join subject s ON dlf.subject_id_ = s.id_
|
|
<where>
|
|
<where>
|
|
|
|
+ <if test="param.tenantId != null">
|
|
|
|
+ AND dlf.tenant_id_ = #{param.tenantId}
|
|
|
|
+ </if>
|
|
<if test="param.subjectId != null">
|
|
<if test="param.subjectId != null">
|
|
- dlf.subject_id_ = #{param.subjectId}
|
|
|
|
|
|
+ AND dlf.subject_id_ = #{param.subjectId}
|
|
</if>
|
|
</if>
|
|
<if test="param.level != null">
|
|
<if test="param.level != null">
|
|
AND dlf.level_ = #{param.level}
|
|
AND dlf.level_ = #{param.level}
|