ICountryNameService.java
1.45 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
package com.lhcredit.project.business.country.service;
import com.lhcredit.project.business.country.domain.CountryName;
import java.util.List;
/**
* 国家标 服务层
*
* @author lhcredit
* @date 2025-03-13
*/
public interface ICountryNameService {
/**
* 查询国家标信息
*
* @param jc 国家标ID
* @return 国家标信息
*/
public CountryName selectCountryById(String jc);
/**
* 查询国家标列表
*
* @param country 国家标信息
* @return 国家标集合
*/
public List<CountryName> selectCountryList(CountryName country);
/**
* 字段转换
* @param country 国家标信息
* @return 国家标信息
*/
public CountryName changeModel(CountryName country);
/**
* 列表转换
*
* @param countryList 国家标集合
* @return 国家标集合
*/
public List<CountryName> changeModel(List<CountryName> countryList);
// /**
// * 新增国家标
// *
// * @param country 国家标信息
// * @return 结果
// */
// public int insertCountry(Country country);
//
// /**
// * 修改国家标
// *
// * @param country 国家标信息
// * @return 结果
// */
// public int updateCountry(Country country);
//
// /**
// * 删除国家标信息
// *
// * @param ids 需要删除的数据ID
// * @return 结果
// */
// public int deleteCountryByIds(String ids);
}