chenlu
2024-03-15 dbec8a881baf27254a13f1f9c7b0167b9f064ab5
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();
}