add:pointserver添加查找空位服务

This commit is contained in:
zhangzq
2024-08-07 09:28:27 +08:00
parent 9e9cfc1b6a
commit f1f5997645
2 changed files with 11 additions and 0 deletions

View File

@@ -80,6 +80,13 @@ public interface ISchBasePointService extends IService<SchBasePoint> {
*/
SchBasePoint selectByRegionCode(String region_code,String vehicleCode);
/**
* 根据工序查询区域空点位
* @param region_code
*/
SchBasePoint selectEmpPointByRegionCode(String region_code,String vehicleCode);
/**
* 根据点位编码查询
* @param start_device_code

View File

@@ -318,4 +318,8 @@ public class SchBasePointServiceImpl extends ServiceImpl<SchBasePointMapper, Sch
return null;
}
@Override
public SchBasePoint selectEmpPointByRegionCode(String region_code, String vehicleCode) {
return null;
}
}