ProjectDetailBo.java 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.goafanti.techproject.bo;
  2. public class ProjectDetailBo extends ProjectListBo{
  3. /** 立项说明 **/
  4. private String signComment;
  5. private String completeComment;
  6. private String uid;
  7. private String buyerProvince;
  8. public String getSignComment() {
  9. return signComment;
  10. }
  11. public void setSignComment(String signComment) {
  12. this.signComment = signComment;
  13. }
  14. public String getCompleteComment() {
  15. return completeComment;
  16. }
  17. public void setCompleteComment(String completeComment) {
  18. this.completeComment = completeComment;
  19. }
  20. public String getUid() {
  21. return uid;
  22. }
  23. public void setUid(String uid) {
  24. this.uid = uid;
  25. }
  26. public String getBuyerProvince() {
  27. return buyerProvince;
  28. }
  29. public void setBuyerProvince(String buyerProvince) {
  30. this.buyerProvince = buyerProvince;
  31. }
  32. }