Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 21f0978

Browse files
committedJun 3, 2024·
"record" to "row"
1 parent fdd96ad commit 21f0978

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/test/java/examples/generated/always/mybatis/GeneratedAlwaysMapper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ default Optional<GeneratedAlwaysRecord> selectByPrimaryKey(Integer _id) {
8080
return selectOne(c -> c.where(id, isEqualTo(_id)));
8181
}
8282

83-
default int insert(GeneratedAlwaysRecord record) {
84-
return MyBatis3Utils.insert(this::insert, record, generatedAlways, c ->
83+
default int insert(GeneratedAlwaysRecord row) {
84+
return MyBatis3Utils.insert(this::insert, row, generatedAlways, c ->
8585
c.map(id).toProperty("id")
8686
.map(firstName).toProperty("firstName")
8787
.map(lastName).toProperty("lastName")

0 commit comments

Comments
 (0)
Please sign in to comment.