123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package edu.nju.model;
- public class ReviewPaperVO {
- private String description;
- private String name;
- private String create_time;
- private String type;
- private String application_location;
- private String requirement_location;
- public ReviewPaperVO(String description, String name, String create_time, String type, String application_location,String requirement_location) {
- this.description = description;
- this.name = name;
- this.create_time = create_time;
- this.type = type;
- this.application_location = application_location;
- this.requirement_location = requirement_location;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getCreate_time() {
- return create_time;
- }
- public void setCreate_time(String create_time) {
- this.create_time = create_time;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getApplication_location() {
- return application_location;
- }
- public void setApplication_location(String application_location) {
- this.application_location = application_location;
- }
- public String getRequirement_location() {
- return requirement_location;
- }
- public void setRequirement_location(String requirement_location) {
- this.requirement_location = requirement_location;
- }
- }
|