Back to project page campus.
The source code is released under:
GNU General Public License
If you think the Android project campus listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package lecho.app.campus.dao; /* w w w .j a v a 2 s.co m*/ // THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT. Enable "keep" sections if you want to edit. /** * Entity mapped to table PLACE_FACULTY. */ public class PlaceFaculty { private Long id; private Long facultyId; private Long placeId; public PlaceFaculty() { } public PlaceFaculty(Long id) { this.id = id; } public PlaceFaculty(Long id, Long facultyId, Long placeId) { this.id = id; this.facultyId = facultyId; this.placeId = placeId; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getFacultyId() { return facultyId; } public void setFacultyId(Long facultyId) { this.facultyId = facultyId; } public Long getPlaceId() { return placeId; } public void setPlaceId(Long placeId) { this.placeId = placeId; } }