|
|
@@ -2152,6 +2152,18 @@ public class UserSubscribeServiceImpl extends ServiceImpl<UserSubscribeMapper, U
|
|
|
item.setSex("女");
|
|
|
}
|
|
|
}
|
|
|
+ if (ObjectUtils.isNotNull(vo.getApplySiteExamTime())){
|
|
|
+ String format = String.format("%s %s-%s", DateUtils.timestampToDateFormat(vo.getApplySiteExamTime()), "yyyy-MM-dd", vo.getApplySiteStartTime(), vo.getApplySiteEndTime());
|
|
|
+ item.setApplyTime(format);
|
|
|
+ }
|
|
|
+ if (ObjectUtils.isNotNull(vo.getSubscribeId())){
|
|
|
+ UserSubscribe subscribe = getById(vo.getSubscribeId());
|
|
|
+ Goods goods = iGoodsService.getById(subscribe.getGoodsId());
|
|
|
+ if (ObjectUtils.isNotNull(goods.getMajorId())){
|
|
|
+ Major major = iMajorService.getById(goods.getMajorId());
|
|
|
+ item.setMajorName(major.getCategoryName());
|
|
|
+ }
|
|
|
+ }
|
|
|
list1.add(item);
|
|
|
|
|
|
if(Validator.isNotEmpty(vo.getIdCardImg1())){
|