UpdateProjectStatusBo.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.goafanti.order.bo;
  2. import javax.validation.constraints.NotNull;
  3. public class UpdateProjectStatusBo {
  4. @NotNull(message = "项目编号必须指定")
  5. private Integer tid;
  6. @NotNull(message = "项目状态必须指定")
  7. private Integer projectStatus;
  8. private String timeRecord;
  9. private String certificateNumber;
  10. private String setUpAmount;
  11. private String pubicityUrl;
  12. public UpdateProjectStatusBo(){
  13. }
  14. public String getPubicityUrl() {
  15. return pubicityUrl;
  16. }
  17. public void setPubicityUrl(String pubicityUrl) {
  18. this.pubicityUrl = pubicityUrl;
  19. }
  20. public UpdateProjectStatusBo(String pubicityUrl) {
  21. this.pubicityUrl = pubicityUrl;
  22. }
  23. public Integer getTid() {
  24. return tid;
  25. }
  26. public void setTid(Integer tid) {
  27. this.tid = tid;
  28. }
  29. public Integer getProjectStatus() {
  30. return projectStatus;
  31. }
  32. public void setProjectStatus(Integer projectStatus) {
  33. this.projectStatus = projectStatus;
  34. }
  35. public String getTimeRecord() {
  36. return timeRecord;
  37. }
  38. public void setTimeRecord(String timeRecord) {
  39. this.timeRecord = timeRecord;
  40. }
  41. public String getCertificateNumber() {
  42. return certificateNumber;
  43. }
  44. public void setCertificateNumber(String certificateNumber) {
  45. this.certificateNumber = certificateNumber;
  46. }
  47. public String getSetUpAmount() {
  48. return setUpAmount;
  49. }
  50. public void setSetUpAmount(String setUpAmount) {
  51. this.setUpAmount = setUpAmount;
  52. }
  53. }