java/nekurak.net-lib/src/cz/frantovo/nekurak/dto/Fotka.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 14 Mar 2010 01:05:35 +0100
changeset 67 fa7e30dee3b3
child 72 81c64c582a26
permissions -rw-r--r--
Hibernate: jednoduché mapování podniků a fotek (1:N).
franta-hg@67
     1
package cz.frantovo.nekurak.dto;
franta-hg@67
     2
franta-hg@67
     3
public class Fotka {
franta-hg@67
     4
franta-hg@67
     5
    /** číslo odpovídá názvu souboru na disku (+přípona) */
franta-hg@67
     6
    private int id;
franta-hg@67
     7
    private String popis;
franta-hg@67
     8
franta-hg@67
     9
    public int getId() {
franta-hg@67
    10
	return id;
franta-hg@67
    11
    }
franta-hg@67
    12
franta-hg@67
    13
    public void setId(int id) {
franta-hg@67
    14
	this.id = id;
franta-hg@67
    15
    }
franta-hg@67
    16
franta-hg@67
    17
    public String getPopis() {
franta-hg@67
    18
	return popis;
franta-hg@67
    19
    }
franta-hg@67
    20
franta-hg@67
    21
    public void setPopis(String popis) {
franta-hg@67
    22
	this.popis = popis;
franta-hg@67
    23
    }
franta-hg@67
    24
}