source: ether_megapoli/trunk/service/implementation/com/medias/integration/hibernate/RequetePlatLoc.java @ 482

Last change on this file since 482 was 482, checked in by vmipsl, 12 years ago

BO insertion données _ insertion code medias package insertion

  • Property svn:executable set to *
File size: 2.5 KB
Line 
1package integration.hibernate;
2
3// Generated 5 févr. 2007 11:07:11 by Hibernate Tools 3.2.0.b9
4
5/**
6 * RequetePlatLoc generated by hbm2java
7 */
8public class RequetePlatLoc implements java.io.Serializable {
9
10        /**
11         *
12         */
13        private static final long serialVersionUID = 1L;
14
15        private int plateformeId;
16
17        private Plateforme plateforme;
18
19        private int latMin;
20
21        private int latMax;
22
23        private int lonMin;
24
25        private int lonMax;
26
27        private int altMin;
28
29        private int altMax;
30
31        private Integer hsMin;
32
33        private Integer hsMax;
34
35        public RequetePlatLoc() {
36        }
37
38        public RequetePlatLoc(int plateformeId, Plateforme plateforme, int latMin,
39                        int latMax, int lonMin, int lonMax, int altMin, int altMax) {
40                this.plateformeId = plateformeId;
41                this.plateforme = plateforme;
42                this.latMin = latMin;
43                this.latMax = latMax;
44                this.lonMin = lonMin;
45                this.lonMax = lonMax;
46                this.altMin = altMin;
47                this.altMax = altMax;
48        }
49
50        public RequetePlatLoc(int plateformeId, Plateforme plateforme, int latMin,
51                        int latMax, int lonMin, int lonMax, int altMin, int altMax,
52                        Integer hsMin, Integer hsMax) {
53                this.plateformeId = plateformeId;
54                this.plateforme = plateforme;
55                this.latMin = latMin;
56                this.latMax = latMax;
57                this.lonMin = lonMin;
58                this.lonMax = lonMax;
59                this.altMin = altMin;
60                this.altMax = altMax;
61                this.hsMin = hsMin;
62                this.hsMax = hsMax;
63        }
64
65        public int getPlateformeId() {
66                return this.plateformeId;
67        }
68
69        public void setPlateformeId(int plateformeId) {
70                this.plateformeId = plateformeId;
71        }
72
73        public Plateforme getPlateforme() {
74                return this.plateforme;
75        }
76
77        public void setPlateforme(Plateforme plateforme) {
78                this.plateforme = plateforme;
79        }
80
81        public int getLatMin() {
82                return this.latMin;
83        }
84
85        public void setLatMin(int latMin) {
86                this.latMin = latMin;
87        }
88
89        public int getLatMax() {
90                return this.latMax;
91        }
92
93        public void setLatMax(int latMax) {
94                this.latMax = latMax;
95        }
96
97        public int getLonMin() {
98                return this.lonMin;
99        }
100
101        public void setLonMin(int lonMin) {
102                this.lonMin = lonMin;
103        }
104
105        public int getLonMax() {
106                return this.lonMax;
107        }
108
109        public void setLonMax(int lonMax) {
110                this.lonMax = lonMax;
111        }
112
113        public int getAltMin() {
114                return this.altMin;
115        }
116
117        public void setAltMin(int altMin) {
118                this.altMin = altMin;
119        }
120
121        public int getAltMax() {
122                return this.altMax;
123        }
124
125        public void setAltMax(int altMax) {
126                this.altMax = altMax;
127        }
128
129        public Integer getHsMin() {
130                return this.hsMin;
131        }
132
133        public void setHsMin(Integer hsMin) {
134                this.hsMin = hsMin;
135        }
136
137        public Integer getHsMax() {
138                return this.hsMax;
139        }
140
141        public void setHsMax(Integer hsMax) {
142                this.hsMax = hsMax;
143        }
144
145}
Note: See TracBrowser for help on using the repository browser.