forked from JerryChen/DXPDA
2 changed files with 207 additions and 0 deletions
-
119app/src/main/java/com/icssoft/icspda/entity/DispatchListReturnData.java
-
88app/src/main/java/com/icssoft/icspda/entity/DispatchListReturnDetailData.java
@ -0,0 +1,119 @@ |
|||
package com.icssoft.icspda.entity; |
|||
|
|||
import com.bin.david.form.annotation.SmartColumn; |
|||
import com.bin.david.form.annotation.SmartTable; |
|||
|
|||
@SmartTable(name = "销售退货信息") |
|||
public class DispatchListReturnData { |
|||
|
|||
@SmartColumn(id = 1, name = "序号") |
|||
private String VouchRow; |
|||
@SmartColumn(id = 2, name = "物料编码") |
|||
private String INVCODE; |
|||
@SmartColumn(id = 3, name = "物料名称") |
|||
private String INVNAME; |
|||
@SmartColumn(id = 4, name = "规格型号") |
|||
private String INVSTD; |
|||
@SmartColumn(id = 5, name = "应退数量") |
|||
private String RequestQty; |
|||
@SmartColumn(id = 6, name = "已退数量") |
|||
private String Inqty; |
|||
@SmartColumn(id = 7, name = "本次数量") |
|||
private String CurrentQty = "0.00"; |
|||
@SmartColumn(id = 8, name = "单位") |
|||
private String INVUOM; |
|||
@SmartColumn(id = 9, name = "项目号") |
|||
private String ORDERNO; |
|||
@SmartColumn(id = 10, name = "批次") |
|||
private String cBatch = ""; |
|||
@SmartColumn(id = 11, name = "仓库") |
|||
private String WHCode; |
|||
|
|||
public String getVouchRow() { |
|||
return VouchRow; |
|||
} |
|||
|
|||
public void setVouchRow(String vouchRow) { |
|||
VouchRow = vouchRow; |
|||
} |
|||
|
|||
public String getINVCODE() { |
|||
return INVCODE; |
|||
} |
|||
|
|||
public void setINVCODE(String INVCODE) { |
|||
this.INVCODE = INVCODE; |
|||
} |
|||
|
|||
public String getINVNAME() { |
|||
return INVNAME; |
|||
} |
|||
|
|||
public void setINVNAME(String INVNAME) { |
|||
this.INVNAME = INVNAME; |
|||
} |
|||
|
|||
public String getINVSTD() { |
|||
return INVSTD; |
|||
} |
|||
|
|||
public void setINVSTD(String INVSTD) { |
|||
this.INVSTD = INVSTD; |
|||
} |
|||
|
|||
public String getRequestQty() { |
|||
return RequestQty; |
|||
} |
|||
|
|||
public void setRequestQty(String requestQty) { |
|||
RequestQty = requestQty; |
|||
} |
|||
|
|||
public String getInqty() { |
|||
return Inqty; |
|||
} |
|||
|
|||
public void setInqty(String inqty) { |
|||
Inqty = inqty; |
|||
} |
|||
|
|||
public String getCurrentQty() { |
|||
return CurrentQty; |
|||
} |
|||
|
|||
public void setCurrentQty(String currentQty) { |
|||
CurrentQty = currentQty; |
|||
} |
|||
|
|||
public String getINVUOM() { |
|||
return INVUOM; |
|||
} |
|||
|
|||
public void setINVUOM(String INVUOM) { |
|||
this.INVUOM = INVUOM; |
|||
} |
|||
|
|||
public String getORDERNO() { |
|||
return ORDERNO; |
|||
} |
|||
|
|||
public void setORDERNO(String ORDERNO) { |
|||
this.ORDERNO = ORDERNO; |
|||
} |
|||
|
|||
public String getcBatch() { |
|||
return cBatch; |
|||
} |
|||
|
|||
public void setcBatch(String cBatch) { |
|||
this.cBatch = cBatch; |
|||
} |
|||
|
|||
public String getWHCode() { |
|||
return WHCode; |
|||
} |
|||
|
|||
public void setWHCode(String WHCode) { |
|||
this.WHCode = WHCode; |
|||
} |
|||
} |
@ -0,0 +1,88 @@ |
|||
package com.icssoft.icspda.entity; |
|||
|
|||
import com.bin.david.form.annotation.SmartColumn; |
|||
import com.bin.david.form.annotation.SmartTable; |
|||
|
|||
@SmartTable(name = "销售退货细信息") |
|||
public class DispatchListReturnDetailData { |
|||
@SmartColumn(id = 1, name = "序号") |
|||
private String VouchRow; |
|||
@SmartColumn(id = 2, name = "物料条码") |
|||
private String LOTNO; |
|||
@SmartColumn(id = 3, name = "物料编码") |
|||
private String INVCODE; |
|||
@SmartColumn(id = 4, name = "物料名称") |
|||
private String INVNAME; |
|||
@SmartColumn(id = 5, name = "条码数量") |
|||
private String Qty; |
|||
@SmartColumn(id = 6, name = "本次数量") |
|||
private String CurrentQty; |
|||
@SmartColumn(id = 7, name = "项目号") |
|||
private String ORDERNO; |
|||
@SmartColumn(id = 8, name = "批次") |
|||
private String cBatch; |
|||
|
|||
public String getVouchRow() { |
|||
return VouchRow; |
|||
} |
|||
|
|||
public void setVouchRow(String vouchRow) { |
|||
VouchRow = vouchRow; |
|||
} |
|||
|
|||
public String getLOTNO() { |
|||
return LOTNO; |
|||
} |
|||
|
|||
public void setLOTNO(String LOTNO) { |
|||
this.LOTNO = LOTNO; |
|||
} |
|||
|
|||
public String getINVCODE() { |
|||
return INVCODE; |
|||
} |
|||
|
|||
public void setINVCODE(String INVCODE) { |
|||
this.INVCODE = INVCODE; |
|||
} |
|||
|
|||
public String getINVNAME() { |
|||
return INVNAME; |
|||
} |
|||
|
|||
public void setINVNAME(String INVNAME) { |
|||
this.INVNAME = INVNAME; |
|||
} |
|||
|
|||
public String getQty() { |
|||
return Qty; |
|||
} |
|||
|
|||
public void setQty(String qty) { |
|||
Qty = qty; |
|||
} |
|||
|
|||
public String getCurrentQty() { |
|||
return CurrentQty; |
|||
} |
|||
|
|||
public void setCurrentQty(String currentQty) { |
|||
CurrentQty = currentQty; |
|||
} |
|||
|
|||
public String getORDERNO() { |
|||
return ORDERNO; |
|||
} |
|||
|
|||
public void setORDERNO(String ORDERNO) { |
|||
this.ORDERNO = ORDERNO; |
|||
} |
|||
|
|||
public String getcBatch() { |
|||
return cBatch; |
|||
} |
|||
|
|||
public void setcBatch(String cBatch) { |
|||
this.cBatch = cBatch; |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue