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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
| package com.stylefeng.guns.modular.system.service;
|
| import com.baomidou.mybatisplus.service.IService;
| import com.stylefeng.guns.modular.system.model.SellingCar;
| import com.stylefeng.guns.modular.system.util.ResultUtil;
|
| import java.util.List;
| import java.util.Map;
|
| public interface ISellingCarService extends IService<SellingCar> {
|
|
| /**
| * 获取列表数据
| * @param createTime
| * @param title
| * @param brandId
| * @param insertUser
| * @param status
| * @param userType
| * @param offset
| * @param limit
| * @return
| * @throws Exception
| */
| Map<String, Object> list(String createTime, String carLicensePlate, Integer brandId, String insertUser, List<Integer> status, Integer userType, Integer offset, Integer limit) throws Exception;
|
|
| /**
| * 添加数据
| * @param sellingCar
| * @return
| * @throws Exception
| */
| ResultUtil addSellingCar(SellingCar sellingCar) throws Exception;
|
|
| /**
| * 修改数据
| * @param sellingCar
| * @return
| * @throws Exception
| */
| ResultUtil updateSellingCar(SellingCar sellingCar) throws Exception;
|
|
| /**
| * 审核数据
| * @param id
| * @param status
| * @param authRemark
| * @return
| * @throws Exception
| */
| ResultUtil auditSellingCar(Integer id, Integer status, String authRemark) throws Exception;
| }
|
|