chenlu
2024-03-15 e7b89d449afc3912c21a64d59bafd7737f7376fd
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.example.erp.mapper.sd;
 
import com.example.erp.entity.sd.BasicGlassType;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
@Mapper
public interface BasicGlassTypeMapper {
    List<BasicGlassType> getOneLevel();
 
    List<BasicGlassType> getTwoLevel();
}