package com.onemap.system.service; import java.util.List; import com.onemap.system.domain.TYztDbfx; /** * 对比分析配置Service接口 * * @author siwei * @date 2022-12-02 */ public interface ITYztDbfxService { /** * 查询对比分析配置 * * @param bsm 对比分析配置主键 * @return 对比分析配置 */ public TYztDbfx selectTYztDbfxByBsm(String bsm); /** * 查询对比分析配置列表 * * @param tYztDbfx 对比分析配置 * @return 对比分析配置集合 */ public List selectTYztDbfxList(TYztDbfx tYztDbfx); /** * 新增对比分析配置 * * @param tYztDbfx 对比分析配置 * @return 结果 */ public int insertTYztDbfx(TYztDbfx tYztDbfx); /** * 修改对比分析配置 * * @param tYztDbfx 对比分析配置 * @return 结果 */ public int updateTYztDbfx(TYztDbfx tYztDbfx); /** * 批量删除对比分析配置 * * @param bsms 需要删除的对比分析配置主键集合 * @return 结果 */ public int deleteTYztDbfxByBsms(String[] bsms); /** * 删除对比分析配置信息 * * @param bsm 对比分析配置主键 * @return 结果 */ public int deleteTYztDbfxByBsm(String bsm); }