24 lines
531 B
Java
24 lines
531 B
Java
package com.hivekion.scenario.service;
|
|
|
|
import com.hivekion.scenario.entity.Resource;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.hivekion.scenario.entity.Vehicle;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* 建筑资源表 服务类
|
|
* </p>
|
|
*
|
|
* @author wangWenHua
|
|
* @since 2025-09-14
|
|
*/
|
|
public interface IResourceService extends IService<Resource> {
|
|
|
|
public List<Resource> listAllBuildResourceByType(Integer type);
|
|
|
|
public List<Vehicle> listAllVehiclesByType(Integer type,Integer resourceId);
|
|
|
|
}
|