aps-modules/aps-core/src/main/java/com/aps/core/service/IApsPlantService.java
@@ -17,7 +17,7 @@ * @param id 工厂管理主键 * @return 工厂管理 */ public ApsPlant selectApsPlantById(Long id); public ApsPlant selectApsPlantById(String id); /** * 查询工厂管理列表 @@ -49,7 +49,7 @@ * @param ids 需要删除的工厂管理主键集合 * @return 结果 */ public int deleteApsPlantByIds(Long[] ids); public int deleteApsPlantByIds(String[] ids); /** * 删除工厂管理信息 @@ -57,5 +57,5 @@ * @param id 工厂管理主键 * @return 结果 */ public int deleteApsPlantById(Long id); public int deleteApsPlantById(String id); }