更新 kit包

This commit is contained in:
XM-GO
2023-08-31 11:12:56 +08:00
parent e027fa848c
commit 9e53f07d92
115 changed files with 213 additions and 213 deletions

View File

@@ -1,6 +1,6 @@
package entity
import "github.com/XM-GO/PandaKit/model"
import "github.com/PandaXGO/PandaKit/model"
type SysApi struct {
model.BaseAutoModel

View File

@@ -1,6 +1,6 @@
package entity
import "github.com/XM-GO/PandaKit/model"
import "github.com/PandaXGO/PandaKit/model"
type SysConfig struct {
ConfigId int64 `json:"configId" gorm:"primaryKey;AUTO_INCREMENT;comment:主键编码"`

View File

@@ -1,6 +1,6 @@
package entity
import "github.com/XM-GO/PandaKit/model"
import "github.com/PandaXGO/PandaKit/model"
// 部门组织
type SysDept struct {

View File

@@ -1,6 +1,6 @@
package entity
import "github.com/XM-GO/PandaKit/model"
import "github.com/PandaXGO/PandaKit/model"
type SysDictData struct {
DictCode int64 `json:"dictCode" gorm:"primary_key;AUTO_INCREMENT"`

View File

@@ -1,6 +1,6 @@
package entity
import "github.com/XM-GO/PandaKit/model"
import "github.com/PandaXGO/PandaKit/model"
type SysMenu struct {
MenuId int64 `json:"menuId" gorm:"primary_key;AUTO_INCREMENT"`

View File

@@ -1,6 +1,6 @@
package entity
import "github.com/XM-GO/PandaKit/model"
import "github.com/PandaXGO/PandaKit/model"
type SysNotice struct {
NoticeId int64 `json:"noticeId" gorm:"primary_key;AUTO_INCREMENT"`

View File

@@ -1,6 +1,6 @@
package entity
import "github.com/XM-GO/PandaKit/model"
import "github.com/PandaXGO/PandaKit/model"
type SysPost struct {
PostId int64 `gorm:"primary_key;AUTO_INCREMENT" json:"postId"`

View File

@@ -1,8 +1,8 @@
package entity
import (
"github.com/XM-GO/PandaKit/casbin"
"github.com/XM-GO/PandaKit/model"
"github.com/PandaXGO/PandaKit/casbin"
"github.com/PandaXGO/PandaKit/model"
)
type SysRole struct {

View File

@@ -1,7 +1,7 @@
package entity
import (
"github.com/XM-GO/PandaKit/model"
"github.com/PandaXGO/PandaKit/model"
"time"
)

View File

@@ -1,6 +1,6 @@
package entity
import "github.com/XM-GO/PandaKit/model"
import "github.com/PandaXGO/PandaKit/model"
type LoginM struct {
Username string `gorm:"type:varchar(64)" json:"username"`