package com.xzx.gc.order.service;
|
|
import cn.hutool.core.convert.Convert;
|
import cn.hutool.core.date.DateUtil;
|
import cn.hutool.core.util.StrUtil;
|
import com.github.pagehelper.PageHelper;
|
import com.github.pagehelper.PageInfo;
|
import com.xzx.gc.common.exception.PlatformException;
|
import com.xzx.gc.entity.UserVehicleRel;
|
import com.xzx.gc.entity.VehicleInfo;
|
import com.xzx.gc.model.admin.VehicleModel;
|
import com.xzx.gc.order.mapper.VehicleInfoMapper;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
import org.springframework.transaction.annotation.Transactional;
|
|
import java.text.SimpleDateFormat;
|
import java.util.*;
|
|
@Service
|
@Transactional
|
public class UserVehicleInfoService {
|
|
@Autowired
|
private VehicleInfoMapper xzxUserVehicleInfoDao;
|
|
|
|
public VehicleInfo findByUserId(String userId){
|
return xzxUserVehicleInfoDao.findByUserId(userId);
|
}
|
|
|
|
}
|