Info.java
上传用户:xinkaifrp
上传日期:2021-05-08
资源大小:372k
文件大小:1k
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package com.financing.entity;
- /**
- *
- * @author Administrator
- */
- public class Info {
- private Double in;//收入
- private Double out;//支出
- private Double left;//结余
- private Double avg;//品均支出
- private Integer days;//天数
- public Integer getDays() {
- return days;
- }
- public void setDays(Integer days) {
- this.days = days;
- }
- public Double getAvg() {
- return avg;
- }
- public void setAvg(Double avg) {
- this.avg = avg;
- }
- public Double getIn() {
- return in;
- }
- public void setIn(Double in) {
- this.in = in;
- }
- public Double getLeft() {
- return left;
- }
- public void setLeft(Double left) {
- this.left = left;
- }
- public Double getOut() {
- return out;
- }
- public void setOut(Double out) {
- this.out = out;
- }
- }