📄 material.java
字号:
package com.qrsx.storage.model;
public class Material {
private Integer id;
private String name;
private String client;
private String unit;
private Float price;
private Float total;
private String note;
/**
* @return the id
*/
public Integer getId() {
return id;
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @return the client
*/
public String getClient() {
return client;
}
/**
* @return the unit
*/
public String getUnit() {
return unit;
}
/**
* @return the price
*/
public Float getPrice() {
return price;
}
/**
* @return the total
*/
public Float getTotal() {
return total;
}
/**
* @return the note
*/
public String getNote() {
return note;
}
/**
* @param id the id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @param client the client to set
*/
public void setClient(String client) {
this.client = client;
}
/**
* @param unit the unit to set
*/
public void setUnit(String unit) {
this.unit = unit;
}
/**
* @param price the price to set
*/
public void setPrice(Float price) {
this.price = price;
}
/**
* @param total the total to set
*/
public void setTotal(Float total) {
this.total = total;
}
/**
* @param note the note to set
*/
public void setNote(String note) {
this.note = note;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -