| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.railway.business.safetool.service;
- import com.railway.business.safetool.domain.SecScheduled;
- import com.railway.business.safetool.domain.vo.SecScheduledCountVo;
- import com.railway.business.safetool.domain.vo.SecScheduledListParmVo;
- import com.railway.business.safetool.domain.vo.SecScheduledToolListVo;
- import com.railway.business.safetool.domain.vo.SecScheduledToolVo;
- import java.util.List;
- /**
- * 安全工具计划表
- * @author lijie
- * @date 2021/12/04
- */
- public interface ISecScheduledService{
- /**
- * 新增
- */
- Long create(SecScheduledToolListVo secScheduled) throws Exception;
- /**
- * 删除
- */
- int delete(String[] ids);
- /**
- * 更新
- */
- int update(SecScheduled secScheduled);
- /**
- * 获取单个
- */
- SecScheduledToolListVo getInfo(String id);
- /**
- * 查询列表
- */
- List<SecScheduledCountVo> getList(SecScheduledListParmVo secScheduled);
- int delTools(SecScheduledToolVo secScheduled) throws Exception ;
- int addTools(SecScheduledToolVo toolsVo) throws Exception;
- }
|