EnterpriseInfoMapper.java
2.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package com.lhcredit.project.business.enterpriseInfo.mapper;
import com.lhcredit.project.business.enterpriseInfo.domain.EnterpriseInfo;
import java.util.List;
/**
* 企业信息Mapper接口
*
* @author ruoyi
* @date 2025-04-25
*/
public interface EnterpriseInfoMapper
{
/**
* 查询企业信息
*
* @param id 企业信息主键
* @return 企业信息
*/
public EnterpriseInfo selectEnterpriseInfoById(Long id);
/**
* 查询企业信息列表
*
* @param enterpriseInfo 企业信息
* @return 企业信息集合
*/
public List<EnterpriseInfo> selectEnterpriseInfoList(EnterpriseInfo enterpriseInfo);
public List<EnterpriseInfo> selectEnterpriseInfoListAll();
/**
* 新增企业信息
*
* @param enterpriseInfo 企业信息
* @return 结果
*/
public int insertEnterpriseInfo(EnterpriseInfo enterpriseInfo);
/**
* 修改企业信息
*
* @param enterpriseInfo 企业信息
* @return 结果
*/
public int updateEnterpriseInfo(EnterpriseInfo enterpriseInfo);
/**
* 删除企业信息
*
* @param id 企业信息主键
* @return 结果
*/
public int deleteEnterpriseInfoById(Long id);
/**
* 批量删除企业信息
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteEnterpriseInfoByIds(Long[] ids);
/**
* 获取各个类型企业数量
* @return
*/
public EnterpriseInfo getEnterpriseCount();
/**
* 查询全量企业数量 按照年度分布
* @param enterpriseInfo
* @return
*/
public List<EnterpriseInfo> getAllEnterpriseCountTrend(EnterpriseInfo enterpriseInfo);
/**
* 根据企业类型查询 企业年度数量 分布
* @param enterpriseInfo
* @return
*/
public List<EnterpriseInfo> getTypeEnterpriseCountTrend(EnterpriseInfo enterpriseInfo);
/**
* 企业数量按照地图分组 图
* @param enterpriseInfo
* @return
*/
public List<EnterpriseInfo> getEnterpriseCountByType(EnterpriseInfo enterpriseInfo);
/**
* 企业注册资本规模占比分布情况 图
* @param enterpriseInfo
* @return
*/
public List<EnterpriseInfo> getEnterpriseCountRegCapTrend(EnterpriseInfo enterpriseInfo);
/**
* 根据 creditCode 查询企业类型
* @param enterpriseInfo
* @return
*/
public EnterpriseInfo getEnterpriseType(EnterpriseInfo enterpriseInfo);
}