chen.lin
2026-01-28 01175f85df1e8402ada5a30aacfeb18fa621e95e
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.LocArea;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
 
public interface LocAreaService extends IService<LocArea> {
    List<LocArea> queryAllLocArea (String areaType);
}