CountryNameMapper.java
1.21 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
package com.lhcredit.project.business.country.mapper;
import com.lhcredit.project.business.country.domain.CountryName;
import java.util.List;
/**
* 国家标 数据层
*
* @author lhcredit
* @date 2025-03-13
*/
public interface CountryNameMapper {
/**
* 查询国家标信息
*
* @param jc 国家标ID
* @return 国家标信息
*/
public CountryName selectCountryById(String jc);
/**
* 查询国家标列表
*
* @param country 国家标信息
* @return 国家标集合
*/
public List<CountryName> selectCountryList(CountryName country);
/**
* 新增国家标
*
* @param country 国家标信息
* @return 结果
*/
public int insertCountry(CountryName country);
/**
* 修改国家标
*
* @param country 国家标信息
* @return 结果
*/
public int updateCountry(CountryName country);
/**
* 删除国家标
*
* @param jc 国家标ID
* @return 结果
*/
public int deleteCountryById(String jc);
/**
* 批量删除国家标
*
* @param jcs 需要删除的数据ID
* @return 结果
*/
public int deleteCountryByIds(String[] jcs);
}