SignInfo.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section6;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  */
  6. public class SignInfo {
  7. //报名人员的ID
  8. private String id;
  9. //考试地点
  10. private String location;
  11. //考试科目
  12. private String subject;
  13. //邮寄地址
  14. private String postAddress;
  15. public String getId() {
  16. return id;
  17. }
  18. public void setId(String id) {
  19. this.id = id;
  20. }
  21. public String getLocation() {
  22. return location;
  23. }
  24. public void setLocation(String location) {
  25. this.location = location;
  26. }
  27. public String getSubject() {
  28. return subject;
  29. }
  30. public void setSubject(String subject) {
  31. this.subject = subject;
  32. }
  33. public String getPostAddress() {
  34. return postAddress;
  35. }
  36. public void setPostAddress(String postAddress) {
  37. this.postAddress = postAddress;
  38. }
  39. }