Info.java
上传用户:xinkaifrp
上传日期:2021-05-08
资源大小:372k
文件大小:1k
源码类别:

家庭/个人应用

开发平台:

Java

  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package com.financing.entity;
  6. /**
  7.  *
  8.  * @author Administrator
  9.  */
  10. public class Info {
  11.     private Double in;//收入
  12.     private Double out;//支出
  13.     private Double left;//结余
  14.     private Double avg;//品均支出
  15.     private Integer days;//天数
  16.     public Integer getDays() {
  17.         return days;
  18.     }
  19.     public void setDays(Integer days) {
  20.         this.days = days;
  21.     }
  22.     public Double getAvg() {
  23.         return avg;
  24.     }
  25.     public void setAvg(Double avg) {
  26.         this.avg = avg;
  27.     }
  28.     public Double getIn() {
  29.         return in;
  30.     }
  31.     public void setIn(Double in) {
  32.         this.in = in;
  33.     }
  34.     public Double getLeft() {
  35.         return left;
  36.     }
  37.     public void setLeft(Double left) {
  38.         this.left = left;
  39.     }
  40.     public Double getOut() {
  41.         return out;
  42.     }
  43.     public void setOut(Double out) {
  44.         this.out = out;
  45.     }
  46. }