1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.ruoyi.business.service;
- import com.ruoyi.business.domain.ZwywBtglGlbt;
- import java.util.List;
- /**
- * 补贴管理高龄补贴信息Service接口
- *
- * @author sun
- * @date 2022-11-14
- */
- public interface IZwywBtglGlbtService
- {
- /**
- * 查询补贴管理高龄补贴信息
- *
- * @param id 补贴管理高龄补贴信息主键
- * @return 补贴管理高龄补贴信息
- */
- public ZwywBtglGlbt selectZwywBtglGlbtById(String id);
- /**
- * 查询补贴管理高龄补贴信息列表
- *
- * @param zwywBtglGlbt 补贴管理高龄补贴信息
- * @return 补贴管理高龄补贴信息集合
- */
- public List<ZwywBtglGlbt> selectZwywBtglGlbtList(ZwywBtglGlbt zwywBtglGlbt);
- public List<ZwywBtglGlbt> selectZwywBtglGlbtListByStatus(ZwywBtglGlbt zwywBtglGlbt);
- public List<ZwywBtglGlbt> selectPortalBtglGlbtList(ZwywBtglGlbt zwywBtglGlbt);
- public List<ZwywBtglGlbt> selectPortalBtglGlbtListByStatus(ZwywBtglGlbt zwywBtglGlbt);
- /**
- * 新增补贴管理高龄补贴信息
- *
- * @param zwywBtglGlbt 补贴管理高龄补贴信息
- * @return 结果
- */
- public int insertZwywBtglGlbt(ZwywBtglGlbt zwywBtglGlbt);
- public int insertPortalBtglGlbt(ZwywBtglGlbt zwywBtglGlbt);
- /**
- * 修改补贴管理高龄补贴信息
- *
- * @param zwywBtglGlbt 补贴管理高龄补贴信息
- * @return 结果
- */
- public int updateZwywBtglGlbt(ZwywBtglGlbt zwywBtglGlbt);
- /**
- * 批量删除补贴管理高龄补贴信息
- *
- * @param ids 需要删除的补贴管理高龄补贴信息主键集合
- * @return 结果
- */
- public int deleteZwywBtglGlbtByIds(String[] ids);
- public String importZwywBtglGlbt(List<ZwywBtglGlbt> glbtList);
- public void checkGlbtJob();
- public String getBfje(ZwywBtglGlbt zwywBtglGlbt);
- }
|