Skip to content

Commit

Permalink
Audit-service add codes of entities
Browse files Browse the repository at this point in the history
  • Loading branch information
doleyzi committed Apr 1, 2024
1 parent 0295655 commit d8dbc2a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ public class Request {
String endTime;
String auditId;
String auditTag;
String inLongGroupId;
String inLongStreamId;
String inlongGroupId;
String inlongStreamId;
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
@Data
public class SourceEntities {

AuditCycle auditCycle;
String sourceTable;
int stepCount;
private AuditCycle auditCycle;
private String sourceTable;
private int beforeTimes;

public SourceEntities(AuditCycle auditCycle, String sourceTable, int stepCount) {
public SourceEntities(AuditCycle auditCycle, String sourceTable, int beforeTimes) {
this.auditCycle = auditCycle;
this.sourceTable = sourceTable;
this.stepCount = stepCount;
this.beforeTimes = beforeTimes;
}
}

0 comments on commit d8dbc2a

Please sign in to comment.