工装验证功能完善
parent
e43428fc7e
commit
1e928bf8ab
@ -1,21 +1,80 @@
|
|||||||
package com.example.haiwei_mom.ipc.data;
|
package com.example.haiwei_mom.ipc.data;
|
||||||
|
|
||||||
public class MachinePlan {
|
public class MachinePlan {
|
||||||
private String planCode,materialName;
|
|
||||||
|
|
||||||
public String getPlanCode() {
|
private String MachineNo;
|
||||||
return planCode;
|
private String PlanId;
|
||||||
|
private String PlanCode;
|
||||||
|
private String MaterialId;
|
||||||
|
private String MaterialName;
|
||||||
|
|
||||||
|
|
||||||
|
private String from;
|
||||||
|
private String barCode;
|
||||||
|
private String workCode;
|
||||||
|
|
||||||
|
|
||||||
|
public String getFrom() {
|
||||||
|
return from;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPlanCode(String planCode) {
|
public void setFrom(String from) {
|
||||||
this.planCode = planCode;
|
this.from = from;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBarCode() {
|
||||||
|
return barCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBarCode(String barCode) {
|
||||||
|
this.barCode = barCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkCode() {
|
||||||
|
return workCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkCode(String workCode) {
|
||||||
|
this.workCode = workCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMachineNo() {
|
||||||
|
return MachineNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMachineNo(String MachineNo) {
|
||||||
|
this.MachineNo = MachineNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlanId() {
|
||||||
|
return PlanId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlanId(String PlanId) {
|
||||||
|
this.PlanId = PlanId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlanCode() {
|
||||||
|
return PlanCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlanCode(String PlanCode) {
|
||||||
|
this.PlanCode = PlanCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMaterialId() {
|
||||||
|
return MaterialId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMaterialId(String MaterialId) {
|
||||||
|
this.MaterialId = MaterialId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getMaterialName() {
|
public String getMaterialName() {
|
||||||
return materialName;
|
return MaterialName;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setMaterialName(String materialName) {
|
public void setMaterialName(String MaterialName) {
|
||||||
this.materialName = materialName;
|
this.MaterialName = MaterialName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue