go-orm-helper
go-orm-helper copied to clipboard
🚀🚀 A GoLand plugin that automatically provides database field completion, tags, and generates Structs for writing ORM code. Supports: Gorm、Xorm、Beego、GoFrame, etc. 一个为了让你在 Goland 上写 ORM...
一直报错
 java.lang.Throwable: psiElement is not instance of requiredClass. psiElement=TYPE, psiElement.class=class com.goide.psi.impl.GoTypeImpl, requiredClass=interface com.goide.psi.GoMethodDeclaration, operation=Looking for biz.Test in go.method, stubIdList=[56, 67, 78]. ref: 50cf572587cf com.intellij.psi.stubs.ManyProjectsStubIndexMismatch: PSI and index do not match....
现有DDL ,转化成 GO 的类型的时候,会被映射成 int64 而不是 uint64 。  期望得到 uint64
Bumps [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) from 5.11.4 to 5.12.2. Release notes Sourced from org.junit.jupiter:junit-jupiter-api's releases. JUnit 5.12.2 = Platform 1.12.2 + Jupiter 5.12.2 + Vintage 5.12.2 See Release Notes. Full Changelog: https://github.com/junit-team/junit5/compare/r5.12.1...r5.12.2 JUnit...
Bumps org.gradle.toolchains.foojay-resolver-convention from 0.8.0 to 0.10.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps org.jetbrains.intellij.platform from 2.2.1 to 2.5.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps [org.jetbrains.kotlin.jvm](https://github.com/JetBrains/kotlin) from 1.9.25 to 2.1.20. Release notes Sourced from org.jetbrains.kotlin.jvm's releases. Kotlin 2.1.20 Changelog Analysis API Fixes KT-68198 Analysis API: Support application service registration in plugin XMLs KT-57733 Analysis...
Bumps [org.jetbrains.kotlinx.kover](https://github.com/Kotlin/kotlinx-kover) from 0.8.3 to 0.9.1. Release notes Sourced from org.jetbrains.kotlinx.kover's releases. 0.9.1 Kover Gradle Plugin Features [#714](https://github.com/Kotlin/kotlinx-kover/issues/714) Added ability to specify inclusion filter for source sets Bugfixes [#716](https://github.com/Kotlin/kotlinx-kover/issues/716) Fixed...
目前插件的功能是非常不错。我还是想提几个优化点 1 生成器的结构体可以选择是否进行内存对齐,可以优化的内存性能 2 pgsql数据库时,无法把字段备注也拷贝到结构体对应字段 假如增加上面几个点我感觉目前的插件会更完美。 另外发现针对pgslq 还差一点点意思 简单sql ``` CREATE TABLE "public"."test_s" ( "id" int4 NOT NULL DEFAULT nextval('test_s_id_seq'::regclass), "title" varchar(255) COLLATE "pg_catalog"."default", CONSTRAINT "test_s_pkey" PRIMARY KEY ("id") )...