package com.zy.asrs.entity.result;
|
|
public class FindLocNoAttributeVo {
|
private String matnr = "";
|
private String specs = "";
|
private String batch = "";
|
private String grade = "";
|
private String brand = "";
|
private String standby1 = "";
|
private String standby2 = "";
|
private String standby3 = "";
|
|
public FindLocNoAttributeVo() {
|
}
|
|
public FindLocNoAttributeVo(String matnr) {
|
this.matnr = matnr;
|
}
|
|
public FindLocNoAttributeVo(String matnr, String batch) {
|
this.matnr = matnr;
|
this.batch = batch;
|
}
|
|
public FindLocNoAttributeVo(String matnr, String batch, String brand) {
|
this.matnr = matnr;
|
this.batch = batch;
|
this.brand = brand;
|
}
|
|
public FindLocNoAttributeVo(String matnr, String batch, String standby1, String standby2, String standby3) {
|
this.matnr = matnr;
|
this.batch = batch;
|
this.standby1 = standby1;
|
this.standby2 = standby2;
|
this.standby3 = standby3;
|
}
|
|
public FindLocNoAttributeVo(String matnr, String specs, String batch, String grade, String brand, String standby1, String standby2, String standby3) {
|
this.matnr = matnr;
|
this.specs = specs;
|
this.batch = batch;
|
this.grade = grade;
|
this.brand = brand;
|
this.standby1 = standby1;
|
this.standby2 = standby2;
|
this.standby3 = standby3;
|
}
|
|
public String getMatnr() {
|
return matnr;
|
}
|
|
public void setMatnr(String matnr) {
|
this.matnr = matnr;
|
}
|
|
public String getSpecs() {
|
return specs;
|
}
|
|
public void setSpecs(String specs) {
|
this.specs = specs;
|
}
|
|
public String getBatch() {
|
return batch;
|
}
|
|
public void setBatch(String batch) {
|
this.batch = batch;
|
}
|
|
public String getGrade() {
|
return grade;
|
}
|
|
public void setGrade(String grade) {
|
this.grade = grade;
|
}
|
|
public String getBrand() {
|
return brand;
|
}
|
|
public void setBrand(String brand) {
|
this.brand = brand;
|
}
|
|
public String getStandby1() {
|
return standby1;
|
}
|
|
public void setStandby1(String standby1) {
|
this.standby1 = standby1;
|
}
|
|
public String getStandby2() {
|
return standby2;
|
}
|
|
public void setStandby2(String standby2) {
|
this.standby2 = standby2;
|
}
|
|
public String getStandby3() {
|
return standby3;
|
}
|
|
public void setStandby3(String standby3) {
|
this.standby3 = standby3;
|
}
|
}
|