zhoushihao
2024-09-23 f00e9e5848711cbf735bf8d56be2a93cb7e850bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mes.rawglassstation.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mes.rawglassdetails.entity.RawGlassStorageDetails;
import com.mes.rawglassstation.entity.RawGlassStorageStation;
 
import java.util.List;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author wf
 * @since 2024-09-10
 */
public interface RawGlassStorageStationMapper extends BaseMapper<RawGlassStorageStation> {
 
  List<RawGlassStorageDetails> listRawGlassDetails();
}