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
41f69487
Commit
41f69487
authored
Jul 31, 2020
by
王昆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gsb
parent
216dfc62
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
85 additions
and
0 deletions
+85
-0
bpo-web/app/base/api/impl/bpoSDPJApi.js
+0
-0
bpo-web/app/base/db/impl/ccashuserDao.js
+16
-0
bpo-web/app/base/db/models/ccashuser.js
+53
-0
bpo-web/app/base/service/impl/ccashinfoSve.js
+2
-0
bpo-web/app/base/service/impl/ccashuserSve.js
+14
-0
No files found.
bpo-web/app/base/api/impl/bpoSDPJApi.js
View file @
41f69487
This diff is collapsed.
Click to expand it.
bpo-web/app/base/db/impl/ccashuserDao.js
0 → 100644
View file @
41f69487
const
system
=
require
(
"../../system"
);
const
Dao
=
require
(
"../dao.base"
);
class
CcashUserDao
extends
Dao
{
constructor
(){
super
(
Dao
.
getModelName
(
CcashUserDao
));
}
async
findByOpenId
(
openId
)
{
if
(
!
openId
)
{
return
[];
}
let
sql
=
`SELECT * FROM
${
this
.
model
.
tableName
}
WHERE openId = :openId`
;
return
await
this
.
customQuery
(
sql
,
{
openId
:
openId
});
}
}
module
.
exports
=
CcashUserDao
;
bpo-web/app/base/db/models/ccashuser.js
0 → 100644
View file @
41f69487
const
system
=
require
(
"../../system"
);
const
settings
=
require
(
"../../../config/settings"
);
const
uiconfig
=
system
.
getUiConfig2
(
settings
.
wxconfig
.
appId
);
module
.
exports
=
(
db
,
DataTypes
)
=>
{
return
db
.
define
(
"ccashuser"
,
{
cash_id
:
DataTypes
.
INTEGER
,
openId
:
DataTypes
.
STRING
,
id_name
:
DataTypes
.
STRING
,
id_no
:
DataTypes
.
STRING
,
contract_id
:
DataTypes
.
STRING
,
},
{
paranoid
:
true
,
//假的删除
underscored
:
true
,
version
:
true
,
freezeTableName
:
true
,
//freezeTableName: true,
// define the table's name
tableName
:
'c_cash_user'
,
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
bpo-web/app/base/service/impl/ccashinfoSve.js
View file @
41f69487
...
...
@@ -3,6 +3,8 @@ const ServiceBase=require("../sve.base");
class
CcashinfoService
extends
ServiceBase
{
constructor
()
{
super
(
ServiceBase
.
getDaoName
(
CcashinfoService
));
this
.
ccashuserDao
=
system
.
getObject
(
"db.ccashuserDao"
);
}
...
...
bpo-web/app/base/service/impl/ccashuserSve.js
0 → 100644
View file @
41f69487
const
system
=
require
(
"../../system"
);
const
ServiceBase
=
require
(
"../sve.base"
);
class
CcashUserService
extends
ServiceBase
{
constructor
()
{
super
(
ServiceBase
.
getDaoName
(
CcashUserService
));
}
async
findByOpenId
(
openId
)
{
return
await
this
.
dao
.
findByOpenId
(
openId
);
}
}
module
.
exports
=
CcashUserService
;
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