AuditVO.java 525 B

12345678910111213141516171819202122232425262728293031
  1. package com.aijia.train.vo;
  2. import com.aijia.core.web.BaseRequest;
  3. /**
  4. * @author sh
  5. * @className TypeVO
  6. * @description idvo
  7. * @date 2021/7/26
  8. */
  9. public class AuditVO extends BaseRequest {
  10. private Integer type;
  11. private String userId;
  12. public Integer getType() {
  13. return type;
  14. }
  15. public void setType(Integer type) {
  16. this.type = type;
  17. }
  18. public String getUserId() {
  19. return userId;
  20. }
  21. public void setUserId(String userId) {
  22. this.userId = userId;
  23. }
  24. }