处理日志时间格式
This commit is contained in:
parent
795b3da57d
commit
3ca0777ea4
|
|
@ -18,6 +18,7 @@ import com.mdd.common.entity.RefundRecord;
|
|||
import com.mdd.common.mapper.RefundLogMapper;
|
||||
import com.mdd.common.mapper.RefundRecordMapper;
|
||||
import com.mdd.common.util.StringUtils;
|
||||
import com.mdd.common.util.TimeUtils;
|
||||
import io.swagger.models.auth.In;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
|
|
@ -97,6 +98,10 @@ public class FinanceRefundServiceImpl implements IFinanceRefundService {
|
|||
|
||||
List<FinanceRefundLogVo> list = refundLogMapper.selectJoinList(FinanceRefundLogVo.class, mpjQueryWrapper);
|
||||
|
||||
for (FinanceRefundLogVo vo : list) {
|
||||
vo.setCreateTime(TimeUtils.timestampToDate(vo.getCreateTime()));
|
||||
}
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue