TWarehousebillsLogMapper.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.ruoyi.warehouseBusiness.mapper;
  2. import com.ruoyi.warehouseBusiness.domain.TWarehousebillsLog;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import java.util.List;
  5. /**
  6. * 入出库状态Mapper接口
  7. *
  8. * @author ruoyi
  9. * @date 2021-01-15
  10. */
  11. @Mapper
  12. public interface TWarehousebillsLogMapper
  13. {
  14. /**
  15. * 查询入出库状态
  16. *
  17. * @param fId 入出库状态ID
  18. * @return 入出库状态
  19. */
  20. public TWarehousebillsLog selectTWarehousebillsLogById(Long fId);
  21. /**
  22. * 查询入出库状态列表
  23. *
  24. * @param tWarehousebillsLog 入出库状态
  25. * @return 入出库状态集合
  26. */
  27. public List<TWarehousebillsLog> selectTWarehousebillsLogList(TWarehousebillsLog tWarehousebillsLog);
  28. /**
  29. * 新增入出库状态
  30. *
  31. * @param tWarehousebillsLog 入出库状态
  32. * @return 结果
  33. */
  34. public int insertTWarehousebillsLog(TWarehousebillsLog tWarehousebillsLog);
  35. /**
  36. * 修改入出库状态
  37. *
  38. * @param tWarehousebillsLog 入出库状态
  39. * @return 结果
  40. */
  41. public int updateTWarehousebillsLog(TWarehousebillsLog tWarehousebillsLog);
  42. /**
  43. * 删除入出库状态
  44. *
  45. * @param fId 入出库状态ID
  46. * @return 结果
  47. */
  48. public int deleteTWarehousebillsLogById(Long fId);
  49. /**
  50. * 批量删除入出库状态
  51. *
  52. * @param fIds 需要删除的数据ID
  53. * @return 结果
  54. */
  55. public int deleteTWarehousebillsLogByIds(Long[] fIds);
  56. }