package com.zy.common.model.enums.model;
|
|
/**
|
* Created by vincent on 2020/6/29
|
*/
|
public class MobileLocDetlVo {
|
|
private String locNo;
|
|
private String matnr;
|
|
private String maktx;
|
|
private Double count;
|
|
public String getLocNo() {
|
return locNo;
|
}
|
|
public void setLocNo(String locNo) {
|
this.locNo = locNo;
|
}
|
|
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 Double getCount() {
|
return count;
|
}
|
|
public void setCount(Double count) {
|
this.count = count;
|
}
|
}
|