| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- package com.onemap.system.mapper;
- import com.onemap.system.domain.TJscSql;
- import java.util.List;
- /**
- * 驾驶舱数据处理Mapper接口
- *
- * @author ruoyi
- * @date 2024-05-30
- */
- public interface TJscSqlMapper {
- /**
- * 查询驾驶舱数据处理
- *
- * @param id 驾驶舱数据处理主键
- * @return 驾驶舱数据处理
- */
- public TJscSql selectTJscSqlById(String id);
- /**
- * 查询驾驶舱数据处理列表
- *
- * @param tJscSql 驾驶舱数据处理
- * @return 驾驶舱数据处理集合
- */
- public List<TJscSql> selectTJscSqlList(TJscSql tJscSql);
- /**
- * 新增驾驶舱数据处理
- *
- * @param tJscSql 驾驶舱数据处理
- * @return 结果
- */
- public int insertTJscSql(TJscSql tJscSql);
- /**
- * 修改驾驶舱数据处理
- *
- * @param tJscSql 驾驶舱数据处理
- * @return 结果
- */
- public int updateTJscSql(TJscSql tJscSql);
- /**
- * 删除驾驶舱数据处理
- *
- * @param id 驾驶舱数据处理主键
- * @return 结果
- */
- public int deleteTJscSqlById(String id);
- /**
- * 批量删除驾驶舱数据处理
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteTJscSqlByIds(String[] ids);
- /**
- * 执行视图
- * @param view 视图
- */
- public void handleView(String view);
- }
|