IZindustryInfoService.java
1.74 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
package com.lhcredit.project.business.zindustryInfo.service;
import com.lhcredit.project.business.zindustryInfo.domain.ZindustryInfo;
import java.util.List;
/**
* 招投标-行业相关 服务层
*
* @author lhcredit
* @date 2025-05-15
*/
public interface IZindustryInfoService {
/**
* 查询招投标-行业相关信息
*
* @param id 招投标-行业相关ID
* @return 招投标-行业相关信息
*/
public ZindustryInfo selectZindustryInfoById(Integer id);
/**
* 查询招投标-行业相关列表
*
* @param zindustryInfo 招投标-行业相关信息
* @return 招投标-行业相关集合
*/
public List<ZindustryInfo> selectZindustryInfoList(ZindustryInfo zindustryInfo);
/**
* 字段转换
* @param zindustryInfo 招投标-行业相关信息
* @return 招投标-行业相关信息
*/
public ZindustryInfo changeModel(ZindustryInfo zindustryInfo);
/**
* 列表转换
*
* @param zindustryInfoList 招投标-行业相关集合
* @return 招投标-行业相关集合
*/
public List<ZindustryInfo> changeModel(List<ZindustryInfo> zindustryInfoList);
/**
* 新增招投标-行业相关
*
* @param zindustryInfo 招投标-行业相关信息
* @return 结果
*/
public int insertZindustryInfo(ZindustryInfo zindustryInfo);
/**
* 修改招投标-行业相关
*
* @param zindustryInfo 招投标-行业相关信息
* @return 结果
*/
public int updateZindustryInfo(ZindustryInfo zindustryInfo);
/**
* 删除招投标-行业相关信息
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public int deleteZindustryInfoByIds(String ids);
}