java/HrisniciSpameri/src/java/cz/frantovo/hrisniciSpameri/dto/Souhrn.java
author František Kučera <franta-hg@frantovo.cz>
Wed, 11 Feb 2009 17:52:08 +0100
changeset 3 08480e8e1199
child 4 e3e2a3a4c36a
permissions -rw-r--r--
Přepravky a první beana
     1 package cz.frantovo.hrisniciSpameri.dto;
     2 
     3 import java.io.Serializable;
     4 import java.net.InetAddress;
     5 import java.sql.Date;
     6 
     7 /**
     8  * Jeden záznam denního souhrnu – jeden hříšník pro daný den.
     9  * @author fiki
    10  */
    11 public class Souhrn implements Serializable {
    12 
    13     private static final long serialVersionUID = 6502435361626487366L;
    14     private Date den;
    15     private InetAddress adresa;
    16     private int pocet;
    17     private Cil cil;
    18 
    19     public Date getDen() {
    20         return den;
    21     }
    22 
    23     public void setDen(Date den) {
    24         this.den = den;
    25     }
    26 
    27     public int getPocet() {
    28         return pocet;
    29     }
    30 
    31     public void setPocet(int pocet) {
    32         this.pocet = pocet;
    33     }
    34 
    35     public Cil getCil() {
    36         return cil;
    37     }
    38 
    39     public void setCil(Cil cil) {
    40         this.cil = cil;
    41     }
    42 
    43     public InetAddress getAdresa() {
    44         return adresa;
    45     }
    46 
    47     public void setAdresa(InetAddress adresa) {
    48         this.adresa = adresa;
    49     }
    50 }