| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | /** * 系统服务 */package com.miniframe.generate.comm.system;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 获取商品计算价 */public class D_C00023 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String goodsCode;//商品编码	/**	 *商品编码	 */	public void setGoodsCode(String goodsCode) {		this.goodsCode=goodsCode;	}	/**	 *商品编码	 */	public String getGoodsCode() {		return this.goodsCode;	}	String price;//价格	/**	 *价格	 */	public void setPrice(String price) {		this.price=price;	}	/**	 *价格	 */	public String getPrice() {		return this.price;	}	String salePrice;//销售价格	/**	 *销售价格	 */	public void setSalePrice(String salePrice) {		this.salePrice=salePrice;	}	/**	 *销售价格	 */	public String getSalePrice() {		return this.salePrice;	}	String returnGoods;//购买的商品数量	/**	 *购买的商品数量	 */	public void setReturnGoods(String returnGoods) {		this.returnGoods=returnGoods;	}	/**	 *购买的商品数量	 */	public String getReturnGoods() {		return this.returnGoods;	}	String isDiscount;//是否有折扣(1-折扣)	/**	 *是否有折扣(1-折扣)	 */	public void setIsDiscount(String isDiscount) {		this.isDiscount=isDiscount;	}	/**	 *是否有折扣(1-折扣)	 */	public String getIsDiscount() {		return this.isDiscount;	}}
 |