优化功能,通知功能,任务功能

This commit is contained in:
PandaGoAdmin
2021-12-31 17:35:43 +08:00
parent ddc9d8b108
commit 1a1f137725
23 changed files with 2212 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ type (
}
)
var SysSysApiModelDao = &sysSysApiModelImpl{
var SysSysApiModelDao SysApiModel = &sysSysApiModelImpl{
table: `sys_apis`,
}

View File

@@ -21,7 +21,7 @@ type (
}
)
var SysSysConfigModelDao = &sysSysConfigModelImpl{
var SysSysConfigModelDao SysConfigModel = &sysSysConfigModelImpl{
table: `sys_configs`,
}

View File

@@ -25,7 +25,7 @@ type (
}
)
var SysDeptModelDao = &sysDeptModelImpl{
var SysDeptModelDao SysDeptModel = &sysDeptModelImpl{
table: `sys_depts`,
}

View File

@@ -21,7 +21,7 @@ type (
}
)
var SysDictDataModelDao = &sysDictDataModelImpl{
var SysDictDataModelDao SysDictDataModel = &sysDictDataModelImpl{
table: `sys_dict_data`,
}

View File

@@ -21,7 +21,7 @@ type (
}
)
var SysDictTypeModelDao = &sysDictTypeModelImpl{
var SysDictTypeModelDao SysDictTypeModel = &sysDictTypeModelImpl{
table: `sys_dict_types`,
}

View File

@@ -25,7 +25,6 @@ type (
}
)
var con = global.Db
var SysUserModelDao SysUserModel = &sysUserModelImpl{
table: `sys_users`,
}