📄 product.java
字号:
package com.saleSystem;
import java.io.*;
public class Product implements Serializable {
/* 私有字段 */
private String productCode;
private String name;
private float price;
/* JavaBean属性访问方法 */
public String getProductCode()
{ return this.productCode; }
public void setProductCode(String productCode)
{ this.productCode = productCode; }
public String getName()
{ return this.name; }
public void setName(String name)
{ this.name = name; }
public void setPrice(float price)
{this.price=price;}
public float getPrice()
{return this.price;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -