|
@@ -659,27 +659,27 @@ public class StudentInfoActivity extends BaseActivity<ActivityStudentInfoBinding
|
|
|
|
|
|
binding.etGraduate.setText(studentData.graduate);
|
|
|
|
|
|
- isEmphasis = studentData.isEmphasis + "";
|
|
|
+ isEmphasis = studentData.getIsEmphasis();
|
|
|
isEmphasisIndex = findDict(binding.tvFSchool, isEmphasis, logicData);
|
|
|
nation = studentData.nation;
|
|
|
nationIndex = findDict(binding.tvNation, nation, nationData);
|
|
|
- specialty = studentData.specialtyId + "";
|
|
|
+ specialty = studentData.getSpecialtyId();
|
|
|
specialtyIndex = findDict(binding.tvSpecialty, specialty, specialtyData);
|
|
|
- isFull = studentData.isFullTime + "";
|
|
|
+ isFull = studentData.getIsFullTime();
|
|
|
isFullIndex = findDict(binding.tvFullTime, isFull, logicData);
|
|
|
|
|
|
advantage = studentData.advantage;
|
|
|
findArray(binding.tvAdvantage, advantage, advantageData);
|
|
|
|
|
|
- isParty = studentData.isParty + "";
|
|
|
+ isParty = studentData.getIsParty();
|
|
|
isPartyIndex = findDict(binding.tvParty, isParty, logicData);
|
|
|
|
|
|
- isHonor = studentData.isReceiveHonor + "";
|
|
|
+ isHonor = studentData.getIsReceiveHonor();
|
|
|
isHonorIndex = findDict(binding.tvHonor, isHonor, logicData);
|
|
|
|
|
|
- perType = studentData.perType + "";
|
|
|
+ perType = studentData.getPerType();
|
|
|
typeIndex = findDict(binding.tvType, perType, typeData);
|
|
|
- level = studentData.socialWorkLevel + "";
|
|
|
+ level = studentData.getSocialWorkLevel();
|
|
|
levelIndex = findDict(binding.tvLevel, level, levelData);
|
|
|
year = studentData.socialWorkYear;
|
|
|
yearIndex = findDict(binding.tvYear, year, yearData);
|
|
@@ -688,7 +688,7 @@ public class StudentInfoActivity extends BaseActivity<ActivityStudentInfoBinding
|
|
|
|
|
|
isPromote = studentData.isPromote;
|
|
|
isPromoteIndex = findDict(binding.tvPromote, isPromote, logicData);
|
|
|
- job = studentData.jobId + "";
|
|
|
+ job = studentData.getJobId();
|
|
|
if ("0".equals(perType)) {
|
|
|
jobIndex = findDict(binding.tvJob, job, jobData1);
|
|
|
} else {
|
|
@@ -700,13 +700,13 @@ public class StudentInfoActivity extends BaseActivity<ActivityStudentInfoBinding
|
|
|
jobTime = studentData.jobTime;
|
|
|
binding.tvJobTime.setText(studentData.jobTime);
|
|
|
|
|
|
- isGrid = studentData.isGridLeader + "";
|
|
|
+ isGrid = studentData.getIsGridLeader();
|
|
|
isGridIndex = findDict(binding.tvGridLeader, isGrid, logicData);
|
|
|
- isBuild = studentData.isBuildLeader + "";
|
|
|
+ isBuild = studentData.getIsBuildLeader();
|
|
|
isBuildIndex = findDict(binding.tvBuildLeader, isBuild, logicData);
|
|
|
- isUnit = studentData.isUnitLeader + "";
|
|
|
+ isUnit = studentData.getIsUnitLeader();
|
|
|
isUnitIndex = findDict(binding.tvUnitLeader, isUnit, logicData);
|
|
|
- isWel = studentData.isWelfare + "";
|
|
|
+ isWel = studentData.getIsWelfare();
|
|
|
isWelIndex = findDict(binding.tvWel, isWel, logicData);
|
|
|
|
|
|
|