zhanghl
2025-04-15 1eaa7387085a2bc0f434ba46eb2d61991d42cd3e
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);
}