sap
parent
1b53ac43d9
commit
404b202516
Binary file not shown.
@ -0,0 +1,125 @@
|
|||||||
|
package com.op.sap.domain;
|
||||||
|
|
||||||
|
|
||||||
|
public class SapMaterialPreparation {
|
||||||
|
//订单号
|
||||||
|
private String AUFNR;
|
||||||
|
//预留/相关需求的项目编号
|
||||||
|
private String RSPOS;
|
||||||
|
//物料号
|
||||||
|
private String MATNR;
|
||||||
|
//物料描述(短文本)
|
||||||
|
private String MAKTX;
|
||||||
|
//工厂
|
||||||
|
private String WERKS;
|
||||||
|
//库存地点
|
||||||
|
private String LGORT;
|
||||||
|
//组件的需求日期
|
||||||
|
private String BDTER;
|
||||||
|
//需求量
|
||||||
|
private String BDMNG;
|
||||||
|
//欠料数量
|
||||||
|
private String ZQLSL;
|
||||||
|
//基本计量单位
|
||||||
|
private String MEINS;
|
||||||
|
//标识:反冲
|
||||||
|
private String RGEKZ;
|
||||||
|
//直接采购标识
|
||||||
|
private String DBSKZ;
|
||||||
|
|
||||||
|
public String getAUFNR() {
|
||||||
|
return AUFNR;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAUFNR(String AUFNR) {
|
||||||
|
this.AUFNR = AUFNR;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRSPOS() {
|
||||||
|
return RSPOS;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRSPOS(String RSPOS) {
|
||||||
|
this.RSPOS = RSPOS;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMATNR() {
|
||||||
|
return MATNR;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMATNR(String MATNR) {
|
||||||
|
this.MATNR = MATNR;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMAKTX() {
|
||||||
|
return MAKTX;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMAKTX(String MAKTX) {
|
||||||
|
this.MAKTX = MAKTX;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWERKS() {
|
||||||
|
return WERKS;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWERKS(String WERKS) {
|
||||||
|
this.WERKS = WERKS;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLGORT() {
|
||||||
|
return LGORT;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLGORT(String LGORT) {
|
||||||
|
this.LGORT = LGORT;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBDTER() {
|
||||||
|
return BDTER;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBDTER(String BDTER) {
|
||||||
|
this.BDTER = BDTER;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBDMNG() {
|
||||||
|
return BDMNG;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBDMNG(String BDMNG) {
|
||||||
|
this.BDMNG = BDMNG;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getZQLSL() {
|
||||||
|
return ZQLSL;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setZQLSL(String ZQLSL) {
|
||||||
|
this.ZQLSL = ZQLSL;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMEINS() {
|
||||||
|
return MEINS;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMEINS(String MEINS) {
|
||||||
|
this.MEINS = MEINS;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRGEKZ() {
|
||||||
|
return RGEKZ;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRGEKZ(String RGEKZ) {
|
||||||
|
this.RGEKZ = RGEKZ;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDBSKZ() {
|
||||||
|
return DBSKZ;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDBSKZ(String DBSKZ) {
|
||||||
|
this.DBSKZ = DBSKZ;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package com.op.sap.service;
|
||||||
|
|
||||||
|
import com.op.common.core.domain.R;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 杨万里 2023年8月
|
||||||
|
*/
|
||||||
|
public interface SapItemSyncService {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 物料同步
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
R itemSync();
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.op.sap.service;
|
||||||
|
|
||||||
|
import com.op.common.core.domain.R;
|
||||||
|
|
||||||
|
public interface SapWorkCenterService {
|
||||||
|
|
||||||
|
R sapWorkCenterSync();
|
||||||
|
|
||||||
|
R sapSupplierSync();
|
||||||
|
|
||||||
|
R sapCustomSync();
|
||||||
|
}
|
Loading…
Reference in New Issue