Browse Source

材料采购单接口新增生成请购单

zthwr 1 year ago
parent
commit
5432769b80
1 changed files with 13 additions and 0 deletions
  1. 13 0
      xc/cg/src/public/u8c/itf/po/IDemandPurchaseRequisition.java

+ 13 - 0
xc/cg/src/public/u8c/itf/po/IDemandPurchaseRequisition.java

@@ -0,0 +1,13 @@
+package u8c.itf.po;
+
+import java.util.List;
+
+import nc.vo.hr.tools.pub.HRAggVO;
+import u8c.vo.DemandBVO;
+import u8c.vo.DemandVO;
+
+public interface IDemandPurchaseRequisition {
+	
+	public void addPraybillVO(DemandVO demandVO, List<DemandBVO> demandBVOs) throws Exception;
+	
+}