zhangf
2024-07-26 698995469a3fcdc3164fc486d18bdbe059b6c92e
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
package com.gkhy.fourierSpecialGasMonitor.service;
 
 
import com.gkhy.fourierSpecialGasMonitor.commons.domain.Result;
import com.gkhy.fourierSpecialGasMonitor.commons.model.PageQuery;
import com.gkhy.fourierSpecialGasMonitor.entity.GasCategory;
import com.gkhy.fourierSpecialGasMonitor.entity.query.FindGasCategoryPageQuery;
import com.gkhy.fourierSpecialGasMonitor.entity.req.CreateGasCategoryReqDTO;
import com.gkhy.fourierSpecialGasMonitor.entity.req.UpdateGasCategoryReqDTO;
 
import java.util.List;
 
public interface GasCategoryService {
    Result createGasCategory(CreateGasCategoryReqDTO reqDto);
 
    Result updateGasCategory(UpdateGasCategoryReqDTO reqDto);
 
    Result findGasCategoryById(Integer id);
 
    Result gasCategoryList();
 
    List<GasCategory> list();
 
    Result findGasCategoryPage(PageQuery<FindGasCategoryPageQuery> pageQuery);
 
    GasCategory findById(Integer id);
 
    List<GasCategory> findGasCategoryForReport();
}