12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.emato.biz.mapper.warehouse;
- import java.util.List;
- import com.emato.biz.domain.warehouse.OWbInveShipmentGoods;
- /**
- * 库存发货货品Mapper接口
- *
- * @author yangbo
- * @date 2021-02-01
- */
- public interface OWbInveShipmentGoodsMapper
- {
- /**
- * 查询库存发货货品
- *
- * @param shipmentGoodsSn 库存发货货品ID
- * @return 库存发货货品
- */
- public OWbInveShipmentGoods selectOWbInveShipmentGoodsById(String shipmentGoodsSn);
- /**
- * 查询库存发货货品列表
- *
- * @param oWbInveShipmentGoods 库存发货货品
- * @return 库存发货货品集合
- */
- public List<OWbInveShipmentGoods> selectOWbInveShipmentGoodsList(OWbInveShipmentGoods oWbInveShipmentGoods);
- /**
- * 新增库存发货货品
- *
- * @param oWbInveShipmentGoods 库存发货货品
- * @return 结果
- */
- public int insertOWbInveShipmentGoods(OWbInveShipmentGoods oWbInveShipmentGoods);
- /**
- * 修改库存发货货品
- *
- * @param oWbInveShipmentGoods 库存发货货品
- * @return 结果
- */
- public int updateOWbInveShipmentGoods(OWbInveShipmentGoods oWbInveShipmentGoods);
- /**
- * 删除库存发货货品
- *
- * @param shipmentGoodsSn 库存发货货品ID
- * @return 结果
- */
- public int deleteOWbInveShipmentGoodsById(String shipmentGoodsSn);
- /**
- * 批量删除库存发货货品
- *
- * @param shipmentGoodsSns 需要删除的数据ID
- * @return 结果
- */
- public int deleteOWbInveShipmentGoodsByIds(String[] shipmentGoodsSns);
- }
|