jinpengyong
2022-12-16 2b088b86c7ebf9e02a25d46520265fb7fd5b85f2
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
package com.moral.api.service;
 
import org.springframework.web.multipart.MultipartFile;
 
import java.text.ParseException;
import java.util.List;
import java.util.Map;
 
import com.moral.api.entity.Dustld;
 
public interface DustldService {
 
 
 
    public  Integer  getDailyDustld(Map<String, Object> params,MultipartFile file ) throws ParseException;
 
 
    public Map<String,Object> dailyDustld(Integer id ,List<MultipartFile> file);
 
 
    Map<String,Object>  selectDust(Integer id );
 
 
    List<Dustld>  selectAll(Map<String, Object> params);
 
 
 
}