TJscSqlMapper.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.onemap.system.mapper;
  2. import com.onemap.system.domain.TJscSql;
  3. import java.util.List;
  4. /**
  5. * 驾驶舱数据处理Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2024-05-30
  9. */
  10. public interface TJscSqlMapper {
  11. /**
  12. * 查询驾驶舱数据处理
  13. *
  14. * @param id 驾驶舱数据处理主键
  15. * @return 驾驶舱数据处理
  16. */
  17. public TJscSql selectTJscSqlById(String id);
  18. /**
  19. * 查询驾驶舱数据处理列表
  20. *
  21. * @param tJscSql 驾驶舱数据处理
  22. * @return 驾驶舱数据处理集合
  23. */
  24. public List<TJscSql> selectTJscSqlList(TJscSql tJscSql);
  25. /**
  26. * 新增驾驶舱数据处理
  27. *
  28. * @param tJscSql 驾驶舱数据处理
  29. * @return 结果
  30. */
  31. public int insertTJscSql(TJscSql tJscSql);
  32. /**
  33. * 修改驾驶舱数据处理
  34. *
  35. * @param tJscSql 驾驶舱数据处理
  36. * @return 结果
  37. */
  38. public int updateTJscSql(TJscSql tJscSql);
  39. /**
  40. * 删除驾驶舱数据处理
  41. *
  42. * @param id 驾驶舱数据处理主键
  43. * @return 结果
  44. */
  45. public int deleteTJscSqlById(String id);
  46. /**
  47. * 批量删除驾驶舱数据处理
  48. *
  49. * @param ids 需要删除的数据主键集合
  50. * @return 结果
  51. */
  52. public int deleteTJscSqlByIds(String[] ids);
  53. /**
  54. * 执行视图
  55. * @param view 视图
  56. */
  57. public void handleView(String view);
  58. }