InputExamine.java 832 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.goafanti.expenseAccount.bo;
  2. import com.goafanti.common.utils.Param;
  3. import javax.validation.constraints.NotNull;
  4. public class InputExamine {
  5. @NotNull
  6. @Param(name = "报销编号")
  7. private Integer id;
  8. @NotNull
  9. @Param(name = "状态")
  10. private Integer status;
  11. @NotNull
  12. @Param(name = "流程状态")
  13. private Integer processStatus;
  14. public Integer getId() {
  15. return id;
  16. }
  17. public void setId(Integer id) {
  18. this.id = id;
  19. }
  20. public Integer getStatus() {
  21. return status;
  22. }
  23. public void setStatus(Integer status) {
  24. this.status = status;
  25. }
  26. public Integer getProcessStatus() {
  27. return processStatus;
  28. }
  29. public void setProcessStatus(Integer processStatus) {
  30. this.processStatus = processStatus;
  31. }
  32. }