📄 ware.java
字号:
package com.cargo.model;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: MR</p> * @author BWM * @version 1.0 */public class Ware { private String id; private String name; private float price; private String factory; private String resume; private String unit; private String leave; private String spec; private int num; private float sumprice; public Ware() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public float getPrice() { return price; } public void setPrice(float price) { this.price = price; } public String getFactory() { return factory; } public void setFactory(String factory) { this.factory = factory; } public String getLeave() { return leave; } public void setLeave(String leave) { this.leave = leave; } public String getResume() { return resume; } public void setResume(String resume) { this.resume = resume; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public String getSpec() { return spec; } public void setSpec(String spec) { this.spec = spec; } public int getNum() { return num; } public void setNum(int num) { this.num = num; } public float getSumprice() { return sumprice; } public void setSumprice(float sumprice) { this.sumprice = sumprice; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -