discountpolicy.java

来自「工厂版本管理系统,STRUTS2框架,用于管理商品的版本,便于有效的控制版本」· Java 代码 · 共 35 行

JAVA
35
字号
package com.bluesky.elecall.domain;import java.math.BigDecimal;public class DiscountPolicy {	private long id;	private long baseQuantity;	private BigDecimal unitPrice;		public long getBaseQuantity() {		return baseQuantity;	}	public void setBaseQuantity(long baseQuantity) {		this.baseQuantity = baseQuantity;	}	public BigDecimal getUnitPrice() {		return unitPrice;	}	public long getId() {		return id;	}	public void setId(long id) {		this.id = id;	}	public void setUnitPrice(BigDecimal unitPrice) {		this.unitPrice = unitPrice;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?