xuhy
2025-01-09 712f70b2936079a131ecb1e63c6d337171618cad
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.CarRental;
import com.stylefeng.guns.modular.system.util.ResultUtil;
import org.springframework.web.multipart.MultipartFile;
 
import java.util.List;
import java.util.Map;
 
public interface ICarRentalService extends IService<CarRental> {
 
 
    /**
     * 获取列表数据
     * @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 title, Integer brandId, String insertUser, List<Integer> status, Integer userType, Integer offset, Integer limit) throws Exception;
 
 
    /**
     * 添加数据
     * @param carRental
     * @return
     * @throws Exception
     */
    ResultUtil addCarRental(CarRental carRental) throws Exception;
 
 
    /**
     * 修改数据
     * @param carRental
     * @return
     * @throws Exception
     */
    ResultUtil updateCarRental(CarRental carRental) throws Exception;
 
 
    /**
     * 审核操作
     * @param id
     * @param status
     * @return
     * @throws Exception
     */
    ResultUtil auditCarRental(Integer id, Integer status, String authRemark) throws Exception;
}