Helius
2021-06-28 3ccbf5989183a6a9d79f501c7d68af9d132d31b0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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);
    }
 
 
 
}