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
7f931ff4
Commit
7f931ff4
authored
Dec 15, 2019
by
王昆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gsb
parent
ca02c52c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
114 additions
and
0 deletions
+114
-0
laowubao/app/base/db/impl/operator/userlabourDao.js
+52
-0
laowubao/app/base/db/models/operator/userlabour.js
+62
-0
laowubao/app/base/service/impl/operator/userlabourSve.js
+0
-0
No files found.
laowubao/app/base/db/impl/operator/userlabourDao.js
0 → 100644
View file @
7f931ff4
const
system
=
require
(
"../../../system"
);
const
Dao
=
require
(
"../../dao.base"
);
class
UsersDao
extends
Dao
{
constructor
(){
super
(
Dao
.
getModelName
(
UsersDao
));
}
async
nameList
()
{
var
sql
=
"SELECT * FROM user_info"
;
return
await
this
.
customQuery
(
sql
);
}
async
findUserInfoByPhone
(
phone_no
){
var
sql
=
"select * from user_info where phone_no = :phone"
;
return
await
this
.
customQuery
(
sql
,
{
phone
:
phone_no
});
}
async
findUserInfoByid
(
user_id
){
return
this
.
model
.
findOne
(
{
where
:{
id
:
user_id
},
raw
:
true
}
);
}
async
findUserInfoByids
(
ids
,
attrs
){
var
result
=
{};
if
(
!
ids
||
ids
.
length
==
0
){
return
result
;
}
attrs
=
attrs
||
"*"
;
var
sql
=
"select "
+
attrs
+
"from user_info where id in (:ids)"
;
var
list
=
await
this
.
customQuery
(
sql
,{
ids
:
ids
});
if
(
!
list
||
list
.
length
==
0
){
return
result
;
}
for
(
var
item
of
list
){
result
[
item
.
id
]
=
item
;
}
return
result
;
}
}
module
.
exports
=
UsersDao
;
// var tesk = new UsersDao();
// var res = tesk.nameList();
// console.log(res);
laowubao/app/base/db/models/operator/userlabour.js
0 → 100644
View file @
7f931ff4
const
system
=
require
(
"../../../system"
);
const
settings
=
require
(
"../../../../config/settings"
);
const
uiconfig
=
system
.
getUiConfig2
(
settings
.
appKey
);
module
.
exports
=
(
db
,
DataTypes
)
=>
{
return
db
.
define
(
"labour"
,
{
labour_type
:
DataTypes
.
STRING
(
50
),
labour_count
:
DataTypes
.
INTEGER
,
age_range
:
DataTypes
.
STRING
(
50
),
sex_ratio
:
DataTypes
.
STRING
(
10
),
labour_address
:
DataTypes
.
STRING
(
1000
),
report_date
:
DataTypes
.
DATE
,
work_address
:
DataTypes
.
STRING
(
1000
),
situation_memo
:
DataTypes
.
STRING
,
phone_no
:
DataTypes
.
STRING
(
20
),
user_id
:
DataTypes
.
INTEGER
,
cur_type
:
DataTypes
.
INTEGER
,
cur_status
:
DataTypes
.
STRING
(
16
),
publish_date
:
DataTypes
.
DATE
,
},{
paranoid
:
true
,
//假的删除
underscored
:
true
,
version
:
false
,
freezeTableName
:
true
,
//freezeTableName: true,
// define the table's name
tableName
:
'labour_info'
,
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}]
// }
]
});
}
laowubao/app/base/service/impl/operator/userlabourSve.js
0 → 100644
View file @
7f931ff4
This diff is collapsed.
Click to expand it.
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