package com.sunda.spmsoversea.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.sunda.spmsoversea.entity.OverseaOtherDtl;

import java.util.List;
import java.util.Map;

/**
 * <p>
 * 海外仓其他出入库明细 服务类
 * </p>
 *
 * @author Wayne
 * @since 2021-12-27
 */
public interface IOverseaOtherDtlService extends IService<OverseaOtherDtl> {

    /** 根据其他出入库uuid和行号，获取一行明细 */
    OverseaOtherDtl getOtherDtl(String uuid, String item);

    /** 根据其他出入库uuid获取详细明细信息 */
    List<Map<String, Object>> getOtherDtlList(String uuid);

    /** 根据其他出入库uuid获取简要明细信息 */
    List<OverseaOtherDtl> getOverseaOtherDtlList(String uuid);
}
