hongjli
2025-05-21 7a0530a22b160ae186bfdde5d52a5eee5995b6da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.aps.core.mapper;
 
import java.util.List;
import com.aps.core.domain.ApsPlant;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 工厂管理Mapper接口
 * 
 * @author ruoyi
 * @date 2025-04-14
 */
@Mapper
public interface ApsPlantMapper  extends BaseMapper<ApsPlant>
{
    /**
     * 查询工厂管理
     * 
     * @param id 工厂管理主键
     * @return 工厂管理
     */
    public ApsPlant selectApsPlantById(String id);
 
    /**
     * 查询工厂管理列表
     * 
     * @param apsPlant 工厂管理
     * @return 工厂管理集合
     */
    public List<ApsPlant> selectApsPlantList(ApsPlant apsPlant);
 
    /**
     * 新增工厂管理
     * 
     * @param apsPlant 工厂管理
     * @return 结果
     */
    public int insertApsPlant(ApsPlant apsPlant);
 
    /**
     * 修改工厂管理
     * 
     * @param apsPlant 工厂管理
     * @return 结果
     */
    public int updateApsPlant(ApsPlant apsPlant);
 
    /**
     * 删除工厂管理
     * 
     * @param id 工厂管理主键
     * @return 结果
     */
    public int deleteApsPlantById(String id);
 
    /**
     * 批量删除工厂管理
     * 
     * @param ids 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteApsPlantByIds(String[] ids);
}