InputProjectStop.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package com.goafanti.order.bo;
  2. import com.goafanti.common.constant.ErrorConstants;
  3. import com.goafanti.common.utils.Param;
  4. import javax.validation.constraints.NotNull;
  5. public class InputProjectStop {
  6. private String ids;
  7. @Param(name="类型")
  8. @NotNull(message = "{"+ ErrorConstants.PARAM_EMPTY_ERROR+"}")
  9. private Integer type;
  10. @Param(name="原因")
  11. @NotNull(message = "{"+ ErrorConstants.PARAM_EMPTY_ERROR+"}")
  12. private String reason;
  13. @Param(name="附件")
  14. @NotNull(message = "{"+ ErrorConstants.PARAM_EMPTY_ERROR+"}")
  15. private String annexUrl;
  16. private Long stopId;
  17. public Long getStopId() {
  18. return stopId;
  19. }
  20. public void setStopId(Long stopId) {
  21. this.stopId = stopId;
  22. }
  23. public Integer getType() {
  24. return type;
  25. }
  26. public void setType(Integer type) {
  27. this.type = type;
  28. }
  29. public String getIds() {
  30. return ids;
  31. }
  32. public void setIds(String ids) {
  33. this.ids = ids;
  34. }
  35. public String getReason() {
  36. return reason;
  37. }
  38. public void setReason(String reason) {
  39. this.reason = reason;
  40. }
  41. public String getAnnexUrl() {
  42. return annexUrl;
  43. }
  44. public void setAnnexUrl(String annexUrl) {
  45. this.annexUrl = annexUrl;
  46. }
  47. }