|
|
@@ -347,6 +347,8 @@ public class RecruitInformationInfoController {
|
|
|
|
|
|
List<Map> mapList = new ArrayList<>();
|
|
|
|
|
|
+ SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm");
|
|
|
+
|
|
|
for (RecruitInformationInfo recruitInformationInfo : page) {
|
|
|
Map map = new HashMap();
|
|
|
|
|
|
@@ -385,6 +387,7 @@ public class RecruitInformationInfoController {
|
|
|
map.put("browseNumber", recruitInformationInfo.getBrowseNumber());
|
|
|
map.put("ageRequirement", recruitInformationInfo.getAgeRequirement());
|
|
|
map.put("isTopping", recruitInformationInfo.getIsTopping());
|
|
|
+ map.put("createTime", sdf.format(recruitInformationInfo.getCreateTime()));
|
|
|
|
|
|
String statusN;
|
|
|
if ("1".equals(recruitInformationInfo.getStatus())) {
|