sgj
2025-12-04 f774d0c4961f5e3f7a760ffaf2dac13b4da1fac4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.fzzy.igds.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.fzzy.igds.domain.DepotConf;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @Description
 * @Author CZT
 * @Date 2025/11/28 10:48
 */
@Mapper
public interface DepotConfMapper extends BaseMapper<DepotConf> {
 
}