-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from qqxx6661/dev_diff_extend_class
feat: 子类DIFF包含父类字段
- Loading branch information
Showing
22 changed files
with
200 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...t/java/cn/monitor4all/logRecord/springboot3/test/bean/diff/extend/TestDiffChildClass.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package cn.monitor4all.logRecord.springboot3.test.bean.diff.extend; | ||
|
||
import cn.monitor4all.logRecord.annotation.LogRecordDiffObject; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@EqualsAndHashCode(callSuper = true) | ||
@Data | ||
@LogRecordDiffObject(alias = "DIFF测试类子类") | ||
public class TestDiffChildClass extends TestDiffParentClass { | ||
|
||
private String paramFromChild; | ||
} |
11 changes: 11 additions & 0 deletions
11
.../java/cn/monitor4all/logRecord/springboot3/test/bean/diff/extend/TestDiffParentClass.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package cn.monitor4all.logRecord.springboot3.test.bean.diff.extend; | ||
|
||
import cn.monitor4all.logRecord.annotation.LogRecordDiffObject; | ||
import lombok.Data; | ||
|
||
@Data | ||
@LogRecordDiffObject(alias = "DIFF测试类父类") | ||
public class TestDiffParentClass { | ||
|
||
private String paramFromParent; | ||
} |
2 changes: 1 addition & 1 deletion
2
...ringboot/test/bean/diff/TestDiffDuty.java → ...3/test/bean/diff/nested/TestDiffDuty.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ringboot3/test/bean/diff/TestDiffJob.java → ...t3/test/bean/diff/nested/TestDiffJob.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ot3/test/bean/diff/TestDiffUserParam.java → ...t/bean/diff/nested/TestDiffUserParam.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...gboot3/test/bean/diff/TestDiffUserVO.java → ...test/bean/diff/nested/TestDiffUserVO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.