|
|
|
@ -232,6 +232,7 @@ public class AwardRecordServiceImpl extends BaseServiceImpl<AwardRecordMapper, A
|
|
|
|
|
public AjaxResult getAwardRecordList(JSONObject jsonObject) {
|
|
|
|
|
AjaxResult ajaxResult = new AjaxResult();
|
|
|
|
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
|
|
SimpleDateFormat simpleDateFormat2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
|
Integer awardType = jsonObject.getInteger("awardType");
|
|
|
|
|
Integer pageNum = jsonObject.getInteger("pageNum");
|
|
|
|
|
Integer pageSize = jsonObject.getInteger("pageSize");
|
|
|
|
@ -265,6 +266,7 @@ public class AwardRecordServiceImpl extends BaseServiceImpl<AwardRecordMapper, A
|
|
|
|
|
awardRecordVo.setIsAward("是");
|
|
|
|
|
}
|
|
|
|
|
awardRecordVo.setId(awardRecord.getId());
|
|
|
|
|
awardRecordVo.setAwardType(awardRecord.getAwardType());
|
|
|
|
|
awardRecordVo.setUserId(awardRecord.getUserId());
|
|
|
|
|
awardRecordVo.setName(awardRecord.getName());
|
|
|
|
|
awardRecordVo.setPhone(awardRecord.getPhone());
|
|
|
|
@ -274,6 +276,7 @@ public class AwardRecordServiceImpl extends BaseServiceImpl<AwardRecordMapper, A
|
|
|
|
|
awardRecordVo.setSource(awardRecord.getSource());
|
|
|
|
|
awardRecordVo.setCreateDateTime(awardRecord.getCreateDateTime());
|
|
|
|
|
awardRecordVo.setAwardDate(simpleDateFormat.format(awardRecord.getCreateDateTime()));
|
|
|
|
|
awardRecordVo.setAwardTime(simpleDateFormat2.format(awardRecord.getCreateDateTime()));
|
|
|
|
|
awardRecordVoList.add(awardRecordVo);
|
|
|
|
|
}
|
|
|
|
|
JSONObject result = new JSONObject();
|
|
|
|
|