17 lines
318 B
Java
17 lines
318 B
Java
package com.rj.service;
|
|
|
|
import com.rj.entity.CustomerManagement;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* <p>
|
|
* 客户管理表 服务类
|
|
* </p>
|
|
*
|
|
* @author 李中华 ,spllzh
|
|
* @since 2025-08-07
|
|
*/
|
|
public interface ICustomerManagementService extends IService<CustomerManagement> {
|
|
|
|
}
|