入伍保留学籍导出民族改成中文
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user