自动化立体仓库 - WMS系统
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.zy.third.service;
 
import com.zy.third.entity.ExdCustomer;
import com.baomidou.mybatisplus.service.IService;
 
/**
* @author zc857
* @description 针对表【Exd_Customer】的数据库操作Service
* @createDate 2025-09-24 08:20:14
*/
public interface ExdCustomerService extends IService<ExdCustomer> {
 
}