package com.sunda.spmswms.service;

import com.alibaba.fastjson.JSONArray;
import com.sunda.spmscommon.ResponseResult;
import com.sunda.spmswms.entity.InventoryCheckDtl;
import com.baomidou.mybatisplus.extension.service.IService;

/**
 * <p>
 * 盘点任务表明细表 服务类
 * </p>
 *
 * @author Wayne
 * @since 2021-05-10
 */
public interface IInventoryCheckDtlService extends IService<InventoryCheckDtl> {

    /*获取InventoryCheck行项*/
    ResponseResult getInventoryCheckDtl(String uuid);

    /*更新InventoryCheckDtl行项
    * 以uuid及taskRowId为key，存在则更新，不存在则新建
    * */
    ResponseResult updateInventoryCheckDtl(String uuid, JSONArray invCheckDtls);
}
