123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.ruoyi.warehouseBusiness.service;
- import com.ruoyi.warehouseBusiness.domain.TWarehousebillsLog;
- import java.util.List;
- /**
- * 入出库状态Service接口
- *
- * @author ruoyi
- * @date 2021-01-15
- */
- public interface ITWarehousebillsLogService
- {
- /**
- * 查询入出库状态
- *
- * @param fId 入出库状态ID
- * @return 入出库状态
- */
- public TWarehousebillsLog selectTWarehousebillsLogById(Long fId);
- /**
- * 查询入出库状态列表
- *
- * @param tWarehousebillsLog 入出库状态
- * @return 入出库状态集合
- */
- public List<TWarehousebillsLog> selectTWarehousebillsLogList(TWarehousebillsLog tWarehousebillsLog);
- /**
- * 新增入出库状态
- *
- * @param tWarehousebillsLog 入出库状态
- * @return 结果
- */
- public int insertTWarehousebillsLog(TWarehousebillsLog tWarehousebillsLog);
- /**
- * 修改入出库状态
- *
- * @param tWarehousebillsLog 入出库状态
- * @return 结果
- */
- public int updateTWarehousebillsLog(TWarehousebillsLog tWarehousebillsLog);
- /**
- * 批量删除入出库状态
- *
- * @param fIds 需要删除的入出库状态ID
- * @return 结果
- */
- public int deleteTWarehousebillsLogByIds(Long[] fIds);
- /**
- * 删除入出库状态信息
- *
- * @param fId 入出库状态ID
- * @return 结果
- */
- public int deleteTWarehousebillsLogById(Long fId);
- }
|