张磊磊
2023-10-18 06cf00b0833747429062890e247908a8e29d53c4
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
package com.thhy.materials.modules.biz.spare.service;
 
import com.thhy.materials.modules.biz.spare.entity.Spare;
import com.thhy.materials.modules.biz.spare.entity.SpareListVo;
 
import java.io.Serializable;
import java.util.List;
 
/**
 *  服务类
 * @author zhang_xiao_bo
 * @since 2023-04-11 16:07:53
 */
public interface SpareService {
 
    Spare get(Serializable id);
 
    List<SpareListVo> findList(Spare spare);
 
    List<SpareListVo> findListForExport(Spare spare,String token);
 
    void addSpare(Spare spare);
 
    void update(Spare spare);
 
    void delete(Serializable id);
}