Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
f173aadb
Commit
f173aadb
authored
Mar 26, 2020
by
王昆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gsb
parent
e66a731d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
65 additions
and
2 deletions
+65
-2
xggsve-uc/app/base/db/impl/saas/saasbusinessDao.js
+9
-0
xggsve-uc/app/base/db/models/saas/saasbusiness.js
+54
-0
xggsve-uc/app/base/service/impl/user/saasplatformuserSve.js
+2
-2
No files found.
xggsve-uc/app/base/db/impl/saas/saasbusinessDao.js
0 → 100644
View file @
f173aadb
const
system
=
require
(
"../../../system"
);
const
Dao
=
require
(
"../../dao.base"
);
class
SaasBusinessDao
extends
Dao
{
constructor
()
{
super
(
Dao
.
getModelName
(
SaasBusinessDao
));
}
}
module
.
exports
=
SaasBusinessDao
;
\ No newline at end of file
xggsve-uc/app/base/db/models/saas/saasbusiness.js
0 → 100644
View file @
f173aadb
const
system
=
require
(
"../../../system"
);
const
settings
=
require
(
"../../../../config/settings"
);
const
uiconfig
=
system
.
getUiConfig2
(
settings
.
appKey
);
module
.
exports
=
(
db
,
DataTypes
)
=>
{
return
db
.
define
(
"saasbusiness"
,
{
name
:
DataTypes
.
STRING
,
domain
:
DataTypes
.
STRING
,
managerId
:
DataTypes
.
INTEGER
,
managerMobile
:
DataTypes
.
STRING
,
},
{
paranoid
:
true
,
//假的删除
underscored
:
true
,
version
:
true
,
freezeTableName
:
true
,
//freezeTableName: true,
// define the table's name
tableName
:
'saas_business'
,
validate
:
{
},
indexes
:
[
// Create a unique index on email
// {
// unique: true,
// fields: ['email']
// },
//
// // Creates a gin index on data with the jsonb_path_ops operator
// {
// fields: ['data'],
// using: 'gin',
// operator: 'jsonb_path_ops'
// },
//
// // By default index name will be [table]_[fields]
// // Creates a multi column partial index
// {
// name: 'public_by_author',
// fields: ['author', 'status'],
// where: {
// status: 'public'
// }
// },
//
// // A BTREE index with a ordered field
// {
// name: 'title_index',
// method: 'BTREE',
// fields: ['author', {attribute: 'title', collate: 'en_US', order: 'DESC', length: 5}]
// }
]
});
}
\ No newline at end of file
xggsve-uc/app/base/service/impl/user/saasplatformuserSve.js
View file @
f173aadb
...
...
@@ -5,7 +5,7 @@ const settings = require("../../../../config/settings")
class
SaasPlatformUserService
extends
ServiceBase
{
constructor
()
{
super
(
"user"
,
ServiceBase
.
getDaoName
(
SaasPlatformUserService
));
this
.
saas
Dao
=
system
.
getObject
(
"db.saas.saa
sDao"
);
this
.
saas
businessDao
=
system
.
getObject
(
"db.saas.saasbusines
sDao"
);
}
// 内部维护使用
...
...
@@ -32,7 +32,7 @@ class SaasPlatformUserService extends ServiceBase {
let
pwd
=
await
this
.
getEncryptStr
(
password
);
console
.
log
(
`密码加密:
${
password
}
------->
${
pwd
}
`
);
let
saas
=
await
this
.
saasDao
.
findById
(
saas_id
);
let
saas
=
await
this
.
saas
business
Dao
.
findById
(
saas_id
);
if
(
!
saas
)
{
return
system
.
getResult
(
null
,
"saas不存在"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment