叶松
2023-10-10 da8dcef599d67dcc66742e53a872b45ead53b1ea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.thhy.materials.modules.biz.pipeplanmonth.service;
 
import com.thhy.materials.modules.biz.pipeplanmonth.entity.PipePlanMonth;
 
import java.io.Serializable;
import java.util.List;
 
/**
 *  服务类
 * @author zhang_xiao_bo
 * @since 2023-04-18 09:10:58
 */
public interface PipePlanMonthService {
 
    PipePlanMonth get(Serializable id);
 
    List<PipePlanMonth> findList(PipePlanMonth pipePlanMonth);
 
    void addPipePlanMonth(PipePlanMonth pipePlanMonth);
 
    void update(PipePlanMonth pipePlanMonth);
 
    void delete(Serializable id);
}