package com.example.wms.entity;
public class WorkShopReceiptEntity {
private String code ;
private String itemName;
private String matspec;
private String targetlocation;
private String finaflag;
private String opration;
private int qty;
public WorkShopReceiptEntity() {
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getItemName() {
return itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getMatspec() {
return matspec;
}
public void setMatspec(String matspec) {
this.matspec = matspec;
}
public String getTargetlocation() {
return targetlocation;
}
public void setTargetlocation(String targetlocation) {
this.targetlocation = targetlocation;
}
public String getFinaflag() {
return finaflag;
}
public void setFinaflag(String finaflag) {
this.finaflag = finaflag;
}
public String getOpration() {
return opration;
}
public void setOpration(String opration) {
this.opration = opration;
}
public int getQty() {
return qty;
}
public void setQty(int qty) {
this.qty = qty;
}
}