Skip to content

Commit

Permalink
Dc
Browse files Browse the repository at this point in the history
  • Loading branch information
babyfish-ct committed Jun 6, 2023
1 parent 27faae1 commit 885fa72
Show file tree
Hide file tree
Showing 5 changed files with 384 additions and 13 deletions.
6 changes: 3 additions & 3 deletions doc/docs/jimmer-sql/basic/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -360,15 +360,15 @@ public interface Author {
</TabItem>
<TabItem value="kotlin" label="Kotlin">

```java title="Author.kt"
```kotlin title="Author.kt"
package org.babyfish.jimmer.sql.example.model

import org.babyfish.jimmer.sql.Entity
import org.babyfish.jimmer.sql.Key
import org.babyfish.jimmer.sql.ManyToMany

@Entity
public interface Author {
interface Author {

@Id
val id: Long
Expand Down Expand Up @@ -406,7 +406,7 @@ public enum Gender {
</TabItem>
<TabItem value="kotlin" label="Kotlin">

```java title="Gender.kt"
```kotlin title="Gender.kt"
package org.babyfish.jimmer.sql.example.model

enum class Gender {
Expand Down
Loading

0 comments on commit 885fa72

Please sign in to comment.