自动化立体仓库 - WMS系统
ZY
2025-05-10 dc84bb47fbc3ffc22a6ba36d30a2852432c2d01d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.nc.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.nc.entity.NccSaleXsfhmxWms;
 
import java.util.List;
 
/**
 * @author ZY
 * @description 针对表【ncc_sale_xsfhmx_wms】的数据库操作Mapper
 * @createDate 2025-05-08 09:54:48
 * @Entity com.zy.nc.entity.NccSaleXsfhmxWms
 */
public interface NccSaleXsfhmxWmsMapper extends BaseMapper<NccSaleXsfhmxWms> {
 
    List<String> selectXsfh();
}