aps-modules/aps-core/src/main/java/com/aps/core/mapper/ApsPlantMapper.java
@@ -19,7 +19,7 @@ * @param id 工厂管理主键 * @return 工厂管理 */ public ApsPlant selectApsPlantById(Long id); public ApsPlant selectApsPlantById(String id); /** * 查询工厂管理列表 @@ -51,7 +51,7 @@ * @param id 工厂管理主键 * @return 结果 */ public int deleteApsPlantById(Long id); public int deleteApsPlantById(String id); /** * 批量删除工厂管理 @@ -59,5 +59,5 @@ * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteApsPlantByIds(Long[] ids); public int deleteApsPlantByIds(String[] ids); }