EarthsitesCreditMapper.java
1.71 KB
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
62
63
64
65
66
67
68
69
70
71
package com.trash.business.mapper;
import java.util.List;
import com.trash.business.domain.ConstructionCredit;
import com.trash.business.domain.EarthsitesCredit;
/**
* 消纳场失信Mapper接口
*
* @author trash
* @date 2023-04-26
*/
public interface EarthsitesCreditMapper
{
/**
* 查询消纳场失信
*
* @param id 消纳场失信ID
* @return 消纳场失信
*/
public EarthsitesCredit selectEarthsitesCreditById(Long id);
/**
* 查询消纳场失信列表
*
* @param earthsitesCredit 消纳场失信
* @return 消纳场失信集合
*/
public List<EarthsitesCredit> selectEarthsitesCreditList(EarthsitesCredit earthsitesCredit);
/**
* 新增消纳场失信
*
* @param earthsitesCredit 消纳场失信
* @return 结果
*/
public int insertEarthsitesCredit(EarthsitesCredit earthsitesCredit);
/**
* 修改消纳场失信
*
* @param earthsitesCredit 消纳场失信
* @return 结果
*/
public int updateEarthsitesCredit(EarthsitesCredit earthsitesCredit);
/**
* 删除消纳场失信
*
* @param id 消纳场失信ID
* @return 结果
*/
public int deleteEarthsitesCreditById(Long id);
/**
* 批量删除消纳场失信
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public int deleteEarthsitesCreditByIds(Long[] ids);
public List<String> getNames(EarthsitesCredit earthsitesCredit);
public List<String> getTypes(EarthsitesCredit earthsitesCredit);
public List<String> getPlaces(EarthsitesCredit earthsitesCredit);
public List<EarthsitesCredit> selectEarthsitesCreditHistory(EarthsitesCredit earthsitesCredit);
}