教育培训manager提交

ln_ry20250512
zhaodw 3 weeks ago
parent c9958e93b3
commit 5fdb9d16cc

@ -43,6 +43,9 @@ public class ApplyInfoListManager {
return applyInfoListService.selectTdApplyInfoListList(applyInfoListDTO); return applyInfoListService.selectTdApplyInfoListList(applyInfoListDTO);
} }
public List<TdApplyInfoList> selectTdApplyInfoListListByApplyStatus(TdApplyInfoListDTO applyInfoListDTO) {
return applyInfoListService.selectTdApplyInfoListListByApplyStatus(applyInfoListDTO);
}
public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO) { public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO) {
return applyInfoListService.selectTdAuditInfoListList(applyInfoListDTO); return applyInfoListService.selectTdAuditInfoListList(applyInfoListDTO);

@ -17,6 +17,7 @@ public interface TdApplyInfoListMapper extends BaseMapper<TdApplyInfoList> {
public List<TdApplyInfoList> selectTdApplyInfoListList(TdApplyInfoListDTO applyInfoListDTO); public List<TdApplyInfoList> selectTdApplyInfoListList(TdApplyInfoListDTO applyInfoListDTO);
public List<TdApplyInfoList> selectTdApplyInfoListListByApplyStatus(TdApplyInfoListDTO applyInfoListDTO);
public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO); public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO);

@ -16,6 +16,7 @@ public interface TdApplyInfoListService extends IService<TdApplyInfoList> {
public List<TdApplyInfoList> selectTdApplyInfoListList(TdApplyInfoListDTO applyInfoListDTO); public List<TdApplyInfoList> selectTdApplyInfoListList(TdApplyInfoListDTO applyInfoListDTO);
public List<TdApplyInfoList> selectTdApplyInfoListListByApplyStatus(TdApplyInfoListDTO applyInfoListDTO);
public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO); public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO);

@ -30,6 +30,13 @@ public class TdApplyInfoListServiceImpl extends ServiceImpl<TdApplyInfoListMappe
return applyInfoListMapper.selectTdApplyInfoListList(applyInfoListDTO); return applyInfoListMapper.selectTdApplyInfoListList(applyInfoListDTO);
} }
@DataScope(deptAlias = "d")
@Override
public List<TdApplyInfoList> selectTdApplyInfoListListByApplyStatus(TdApplyInfoListDTO applyInfoListDTO) {
return applyInfoListMapper.selectTdApplyInfoListListByApplyStatus(applyInfoListDTO);
}
@DataScope(deptAlias = "d") @DataScope(deptAlias = "d")
@Override @Override
public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO) { public List<TdApplyInfoList> selectTdAuditInfoListList(TdApplyInfoListDTO applyInfoListDTO) {

@ -75,6 +75,35 @@
</trim> </trim>
ORDER BY create_time DESC ORDER BY create_time DESC
</select> </select>
<select id="selectTdApplyInfoListListByApplyStatus" resultType="com.ruoyi.system.domain.apply.TdApplyInfoList">
select <include refid="Base_Column_List"/> from td_apply_info_list d
<trim prefix="where" prefixOverrides="and|or">
<if test="name!=null and name!=''">
AND name = #{name}
</if>
<if test="nationa!=null and nationa!=''">
AND nationa = #{nationa}
</if>
<if test="formerName!=null and formerName!=''">
AND former_name = #{formerName}
</if>
<if test="cerno!=null and cerno!=''">
AND cerno = #{cerno}
</if>
<if test="phone!=null and phone!=''">
AND phone = #{phone}
</if>
<if test="smPost!=null and smPost!=''">
AND sm_post = #{smPost}
</if>
AND apply_status in (2)
<!-- 数据范围过滤 -->
${params.dataScope}
</trim>
ORDER BY create_time DESC
</select>
<select id="selectTdAuditInfoListList" resultType="com.ruoyi.system.domain.apply.TdApplyInfoList"> <select id="selectTdAuditInfoListList" resultType="com.ruoyi.system.domain.apply.TdApplyInfoList">
select <include refid="Base_Column_List"/> from td_apply_info_list d select <include refid="Base_Column_List"/> from td_apply_info_list d
<trim prefix="where" prefixOverrides="and|or"> <trim prefix="where" prefixOverrides="and|or">

Loading…
Cancel
Save