1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.ruoyi.system.service;
- import com.ruoyi.system.domain.butler.ButlerSettings;
- import java.util.List;
- /**
- * 物业管家设置Service接口
- *
- * @author boman
- * @date 2025-03-07
- */
- public interface IButlerSettingsService
- {
- /**
- * 查询物业管家设置
- *
- * @param settingsId 物业管家设置主键
- * @return 物业管家设置
- */
- public ButlerSettings selectButlerSettingsBySettingsId(Long settingsId);
- /**
- * 查询物业管家设置列表
- *
- * @param butlerSettings 物业管家设置
- * @return 物业管家设置集合
- */
- public List<ButlerSettings> selectButlerSettingsList(ButlerSettings butlerSettings);
- /**
- * 新增物业管家设置
- *
- * @param butlerSettings 物业管家设置
- * @return 结果
- */
- public int insertButlerSettings(ButlerSettings butlerSettings);
- /**
- * 修改物业管家设置
- *
- * @param butlerSettings 物业管家设置
- * @return 结果
- */
- public int updateButlerSettings(ButlerSettings butlerSettings);
- /**
- * 批量删除物业管家设置
- *
- * @param settingsIds 需要删除的物业管家设置主键集合
- * @return 结果
- */
- public int deleteButlerSettingsBySettingsIds(Long[] settingsIds);
- /**
- * 删除物业管家设置信息
- *
- * @param settingsId 物业管家设置主键
- * @return 结果
- */
- public int deleteButlerSettingsBySettingsId(Long settingsId);
- }
|