📄 customerprice.java
字号:
package com.easyjf.asp.domain;
import java.math.BigDecimal;
import com.easyjf.dbo.annotation.Table;
/**
* 价格信息
* @author 大峡
*
*/
@Table(tableName="CustomerPrice",keyField="cid",keyGenerator="com.easyjf.dbo.RandomIdGenerator")
public class CustomerPrice implements java.io.Serializable{
private String cid;
private String belongDept;
private String customerSn;
private String productSn;
private BigDecimal price=new BigDecimal(0);
private String unit;
public String getBelongDept() {
return belongDept;
}
public void setBelongDept(String belongDept) {
this.belongDept = belongDept;
}
public String getCid() {
return cid;
}
public void setCid(String cid) {
this.cid = cid;
}
public String getCustomerSn() {
return customerSn;
}
public void setCustomerSn(String customerSn) {
this.customerSn = customerSn;
}
public BigDecimal getPrice() {
return price;
}
public void setPrice(BigDecimal price) {
this.price = price;
}
public String getProductSn() {
return productSn;
}
public void setProductSn(String productSn) {
this.productSn = productSn;
}
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -