20 lines
469 B
Java
20 lines
469 B
Java
package com.cim.idm.dao;
|
|
|
|
|
|
import com.cim.idm.wmspackage.materialpacking.management.data.MaterialPacking;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import java.util.List;
|
|
|
|
@Component
|
|
@Mapper
|
|
public interface MaterialReversalDao {
|
|
|
|
//更新冲销凭证为已冲销
|
|
public static void updateReversalUnDoId(@Param("undoId") String undoId) throws Exception {
|
|
|
|
}
|
|
}
|