12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.emato.biz.mapper.warehouse;
- import java.util.List;
- import com.emato.biz.domain.warehouse.OWbInveFreeze;
- /**
- * 库存冻结记录,记录订单商品冻结Mapper接口
- *
- * @author yangbo
- * @date 2021-02-01
- */
- public interface OWbInveFreezeMapper
- {
- /**
- * 查询库存冻结记录,记录订单商品冻结
- *
- * @param inveFzeSn 库存冻结记录,记录订单商品冻结ID
- * @return 库存冻结记录,记录订单商品冻结
- */
- public OWbInveFreeze selectOWbInveFreezeById(String inveFzeSn);
- /**
- * 查询库存冻结记录,记录订单商品冻结列表
- *
- * @param oWbInveFreeze 库存冻结记录,记录订单商品冻结
- * @return 库存冻结记录,记录订单商品冻结集合
- */
- public List<OWbInveFreeze> selectOWbInveFreezeList(OWbInveFreeze oWbInveFreeze);
- /**
- * 新增库存冻结记录,记录订单商品冻结
- *
- * @param oWbInveFreeze 库存冻结记录,记录订单商品冻结
- * @return 结果
- */
- public int insertOWbInveFreeze(OWbInveFreeze oWbInveFreeze);
- /**
- * 修改库存冻结记录,记录订单商品冻结
- *
- * @param oWbInveFreeze 库存冻结记录,记录订单商品冻结
- * @return 结果
- */
- public int updateOWbInveFreeze(OWbInveFreeze oWbInveFreeze);
- /**
- * 删除库存冻结记录,记录订单商品冻结
- *
- * @param inveFzeSn 库存冻结记录,记录订单商品冻结ID
- * @return 结果
- */
- public int deleteOWbInveFreezeById(String inveFzeSn);
- /**
- * 批量删除库存冻结记录,记录订单商品冻结
- *
- * @param inveFzeSns 需要删除的数据ID
- * @return 结果
- */
- public int deleteOWbInveFreezeByIds(String[] inveFzeSns);
- }
|