You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
841 B

  1. package com.spring.modules.change.entity;
  2. import lombok.Data;
  3. import java.io.Serializable;
  4. /**
  5. * OA删除待办接口调用日志
  6. */
  7. @Data
  8. public class OaDeleteUserRequestInfoLogEntity implements Serializable {
  9. private static final long serialVersionUID = 1L;
  10. private Long id;
  11. private String site;
  12. private String documentNo;
  13. private String documentType;
  14. private String workflowId;
  15. private String requestId;
  16. private String flowId;
  17. private String oaUserId;
  18. private String syscode;
  19. private String interfaceUrl;
  20. private String callMethod;
  21. private String callScene;
  22. private String requestJson;
  23. private String responseJson;
  24. private String responseCode;
  25. private String responseMsg;
  26. private String successFlag;
  27. private String errorMsg;
  28. private String createBy;
  29. }