到货单生成接口

This commit is contained in:
hefengkai 2024-10-16 19:03:48 +08:00
parent df2998ce3f
commit 28cd719b78
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package nc.itf.pu.dhjyd.dhjydmaster;
import java.util.Map;
import nc.vo.pu.m23.entity.ArriveVO;
/***
*
* @author hefk
*
*/
public interface IArriveToDhjyd {
/***
* 到货单生成到货检验单
* @param ArriveVO
* @return
*/
public Map<String,String> createDhjyd_RequiresNew(ArriveVO arriveVO);
}