1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
| package com.by4cloud.platform.processing.mapper;
|
| import com.by4cloud.platform.common.data.datascope.PlatformBaseMapper;
| import com.by4cloud.platform.processing.entity.CustomerUseCar;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 客户使用车表
| *
| * @author zzl
| * @date 2025-10-20 10:38:04
| */
| @Mapper
| public interface CustomerUseCarMapper extends PlatformBaseMapper<CustomerUseCar> {
|
| }
|
|