15 lines
334 B
Java
15 lines
334 B
Java
package com.ruoyi.database.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.ruoyi.database.domain.CustomerPlateNoInfo;
|
|
|
|
/**
|
|
* (客户车牌绑定表)Service
|
|
*
|
|
* @author makejava
|
|
* @since 2025-11-20 08:57:44
|
|
*/
|
|
public interface CustomerPlateNoInfoService extends IService<CustomerPlateNoInfo> {
|
|
|
|
}
|