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
33 lines
841 B
package com.spring.modules.change.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* OA删除待办接口调用日志
|
|
*/
|
|
@Data
|
|
public class OaDeleteUserRequestInfoLogEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private Long id;
|
|
private String site;
|
|
private String documentNo;
|
|
private String documentType;
|
|
private String workflowId;
|
|
private String requestId;
|
|
private String flowId;
|
|
private String oaUserId;
|
|
private String syscode;
|
|
private String interfaceUrl;
|
|
private String callMethod;
|
|
private String callScene;
|
|
private String requestJson;
|
|
private String responseJson;
|
|
private String responseCode;
|
|
private String responseMsg;
|
|
private String successFlag;
|
|
private String errorMsg;
|
|
private String createBy;
|
|
}
|