ZindustryInfoMapper.java 1.49 KB
package com.lhcredit.project.business.zindustryInfo.mapper;

import com.lhcredit.project.business.zindustryInfo.domain.ZindustryInfo;

import java.util.List;

/**
 * 招投标-行业相关 数据层
 *
 * @author lhcredit
 * @date 2025-05-15
 */
public interface ZindustryInfoMapper {
    /**
     * 查询招投标-行业相关信息
     *
     * @param id 招投标-行业相关ID
     * @return 招投标-行业相关信息
     */
    public ZindustryInfo selectZindustryInfoById(Integer id);

    /**
     * 查询招投标-行业相关列表
     *
     * @param zindustryInfo 招投标-行业相关信息
     * @return 招投标-行业相关集合
     */
    public List<ZindustryInfo> selectZindustryInfoList(ZindustryInfo zindustryInfo);

    /**
     * 新增招投标-行业相关
     *
     * @param zindustryInfo 招投标-行业相关信息
     * @return 结果
     */
    public int insertZindustryInfo(ZindustryInfo zindustryInfo);

    /**
     * 修改招投标-行业相关
     *
     * @param zindustryInfo 招投标-行业相关信息
     * @return 结果
     */
    public int updateZindustryInfo(ZindustryInfo zindustryInfo);

    /**
     * 删除招投标-行业相关
     *
     * @param id 招投标-行业相关ID
     * @return 结果
     */
    public int deleteZindustryInfoById(Integer id);

    /**
     * 批量删除招投标-行业相关
     *
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteZindustryInfoByIds(String[] ids);

}