入伍保留学籍导出民族改成中文

This commit is contained in:
2026-04-03 16:07:18 +08:00
parent 79302deb85
commit 05a7b006ca
2 changed files with 17 additions and 14 deletions

View File

@@ -6,6 +6,7 @@ import javax.servlet.http.HttpServletResponse;
import com.srs.dormitory.domain.DmsOutsideAccommodationApply;
import com.srs.routine.domain.dto.RtEnlistmentReserveExportDto;
import com.srs.system.service.ISysDictDataService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
@@ -38,6 +39,9 @@ public class RtEnlistmentReserveController extends BaseController {
@Autowired
private IRtEnlistmentReserveService rtEnlistmentReserveService;
@Autowired
private ISysDictDataService sysDictDataService;
/**
* 查询应征入伍保留学籍申请列表
*/
@@ -80,7 +84,7 @@ public class RtEnlistmentReserveController extends BaseController {
dto.setApplyNo(source.getApplyNo());
dto.setTeacherName(source.getTeacherName());
dto.setStudentName(source.getStudentName());
dto.setNation(source.getNation());
dto.setNation(sysDictDataService.selectDictLabel("rt_nation", source.getNation()));
dto.setGrade(source.getGrade());
dto.setStudentNo(source.getStudentNo());
dto.setClassName(source.getClassName());