123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.kmall.admin.service;
- import com.kmall.admin.entity.GoodsTransportInfoDetailEntity;
- import com.kmall.common.utils.Query;
- import java.util.List;
- import java.util.Map;
- /**
- * 在途商品明细表Service接口
- *
- * @author emato
- * @email admin@qhdswl.com
- * @date 2020-06-15 18:19:23
- */
- public interface GoodsTransportInfoDetailService {
- /**
- * 根据主键查询实体
- *
- * @param transItemId 主键
- * @return 实体
- */
- GoodsTransportInfoDetailEntity queryObject(Integer transItemId);
- /**
- * 分页查询
- *
- * @param map 参数
- * @return list
- */
- List<GoodsTransportInfoDetailEntity> queryList(Map<String, Object> map);
- /**
- * 分页统计总数
- *
- * @param map 参数
- * @return 总数
- */
- int queryTotal(Map<String, Object> map);
- /**
- * 保存实体
- *
- * @param goodsTransportInfoDetail 实体
- * @return 保存条数
- */
- int save(GoodsTransportInfoDetailEntity goodsTransportInfoDetail);
- /**
- * 根据主键更新实体
- *
- * @param goodsTransportInfoDetail 实体
- * @return 更新条数
- */
- int update(GoodsTransportInfoDetailEntity goodsTransportInfoDetail);
- /**
- * 根据主键删除
- *
- * @param transItemId
- * @return 删除条数
- */
- int delete(Integer transItemId);
- /**
- * 根据主键批量删除
- *
- * @param transItemIds
- * @return 删除条数
- */
- int deleteBatch(Integer[] transItemIds);
- List<GoodsTransportInfoDetailEntity> searchListByStatusAndSku(Query query, Integer wayStatus, String sku);
- int queryTotalByStatusAndSku(Query query, Integer wayStatus, String sku);
- }
|