package com.co.lane.print.test; public class OrderItem { /** * 商品编号 */ private String ItemCode = null; /** * 商品名称 */ private String ItemName = null; /** * 件数 */ private String Qty = null; /** * 成色 */ private String CS = null; /** * 金重 */ private String JZ = null; /** * 副钻 */ private String FZ = null; /** * 单价 */ private String PC = null; /** * 加工费 */ private String JGF = null; /** * 应售 */ private String YS = null; /** * 实售 */ private String SS = null; /** * 印记 */ private String YJ = null; /** * 备注 */ private String MO = null; /** * @return the itemCode */ public String getItemCode() { return ItemCode; } /** * @param itemCode the itemCode to set */ public void setItemCode(String itemCode) { ItemCode = itemCode; } /** * @return the itemName */ public String getItemName() { return ItemName; } /** * @param itemName the itemName to set */ public void setItemName(String itemName) { ItemName = itemName; } /** * @return the qty */ public String getQty() { return Qty; } /** * @param qty the qty to set */ public void setQty(String qty) { Qty = qty; } /** * @return the cS */ public String getCS() { return CS; } /** * @param cS the cS to set */ public void setCS(String cS) { CS = cS; } /** * @return the jZ */ public String getJZ() { return JZ; } /** * @param jZ the jZ to set */ public void setJZ(String jZ) { JZ = jZ; } /** * @return the fZ */ public String getFZ() { return FZ; } /** * @param fZ the fZ to set */ public void setFZ(String fZ) { FZ = fZ; } /** * @return the pC */ public String getPC() { return PC; } /** * @param pC the pC to set */ public void setPC(String pC) { PC = pC; } /** * @return the jGF */ public String getJGF() { return JGF; } /** * @param jGF the jGF to set */ public void setJGF(String jGF) { JGF = jGF; } /** * @return the yS */ public String getYS() { return YS; } /** * @param yS the yS to set */ public void setYS(String yS) { YS = yS; } /** * @return the sS */ public String getSS() { return SS; } /** * @param sS the sS to set */ public void setSS(String sS) { SS = sS; } /** * @return the yJ */ public String getYJ() { return YJ; } /** * @param yJ the yJ to set */ public void setYJ(String yJ) { YJ = yJ; } /** * @return the mO */ public String getMO() { return MO; } /** * @param mO the mO to set */ public void setMO(String mO) { MO = mO; } }