sfd
2025-05-22 b97d997812695c811132ed23a64b3132c5be7123
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
package com.aps.core.service;
 
import java.util.List;
import com.aps.core.domain.ApsProfessionalFixedCycleManagement;
 
/**
 * 专业固定周期管理Service接口
 * 
 * @author ruoyi
 * @date 2025-04-21
 */
public interface IApsProfessionalFixedCycleManagementService 
{
    /**
     * 查询专业固定周期管理
     * 
     * @param id 专业固定周期管理主键
     * @return 专业固定周期管理
     */
    public ApsProfessionalFixedCycleManagement selectApsProfessionalFixedCycleManagementById(String id);
 
    /**
     * 查询专业固定周期管理列表
     * 
     * @param apsProfessionalFixedCycleManagement 专业固定周期管理
     * @return 专业固定周期管理集合
     */
    public List<ApsProfessionalFixedCycleManagement> selectApsProfessionalFixedCycleManagementList(ApsProfessionalFixedCycleManagement apsProfessionalFixedCycleManagement);
 
    /**
     * 新增专业固定周期管理
     * 
     * @param apsProfessionalFixedCycleManagement 专业固定周期管理
     * @return 结果
     */
    public int insertApsProfessionalFixedCycleManagement(ApsProfessionalFixedCycleManagement apsProfessionalFixedCycleManagement);
 
    /**
     * 修改专业固定周期管理
     * 
     * @param apsProfessionalFixedCycleManagement 专业固定周期管理
     * @return 结果
     */
    public int updateApsProfessionalFixedCycleManagement(ApsProfessionalFixedCycleManagement apsProfessionalFixedCycleManagement);
 
    /**
     * 批量删除专业固定周期管理
     * 
     * @param ids 需要删除的专业固定周期管理主键集合
     * @return 结果
     */
    public int deleteApsProfessionalFixedCycleManagementByIds(String[] ids);
 
    /**
     * 删除专业固定周期管理信息
     * 
     * @param id 专业固定周期管理主键
     * @return 结果
     */
    public int deleteApsProfessionalFixedCycleManagementById(String id);
}