工装验证功能完善
parent
e43428fc7e
commit
1e928bf8ab
@ -1,21 +1,80 @@
|
||||
package com.example.haiwei_mom.ipc.data;
|
||||
|
||||
public class MachinePlan {
|
||||
private String planCode,materialName;
|
||||
|
||||
public String getPlanCode() {
|
||||
return planCode;
|
||||
private String MachineNo;
|
||||
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) {
|
||||
this.planCode = planCode;
|
||||
public void setFrom(String from) {
|
||||
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() {
|
||||
return materialName;
|
||||
return MaterialName;
|
||||
}
|
||||
|
||||
public void setMaterialName(String materialName) {
|
||||
this.materialName = materialName;
|
||||
public void setMaterialName(String MaterialName) {
|
||||
this.MaterialName = MaterialName;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue