📄 expensereportrecorditem.java
字号:
package com.jlobo.web.views;
public class ExpenseReportRecordItem {
private String day;
private double meals;
private double hotels;
private double transport;
public ExpenseReportRecordItem(String day, double meals, double hotels, double transport) {
this.day = day;
this.meals = meals;
this.hotels = hotels;
this.transport = transport;
}
public String getDay() {
return day;
}
public void setDay(String day) {
this.day = day;
}
public double getHotels() {
return hotels;
}
public void setHotels(double hotels) {
this.hotels = hotels;
}
public double getMeals() {
return meals;
}
public void setMeals(double meals) {
this.meals = meals;
}
public double getTransport() {
return transport;
}
public void setTransport(double transport) {
this.transport = transport;
}
public double getTotal() {
return meals+hotels+transport;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -