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
7c445ebd
Commit
7c445ebd
authored
May 17, 2020
by
蒋勇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d
parent
5884a16f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
70 additions
and
6 deletions
+70
-6
center-manage/app/base/db/metadata/app/platform.js
+1
-5
center-manage/app/base/db/models/msg/msghistory.js
+68
-0
center-manage/app/base/service/impl/msg/msghistorySve.js
+1
-1
No files found.
center-manage/app/base/db/metadata/app/platform.js
View file @
7c445ebd
...
...
@@ -9,12 +9,8 @@ module.exports = {
"usageType"
:
{
"kt"
:
"课堂"
,
"taxkt"
:
"财税课堂"
,
"qt"
:
"其它"
},
"opstatus"
:
{
"0"
:
"失败"
,
"1"
:
"成功"
},
"sex"
:
{
"male"
:
"男"
,
"female"
:
"女"
},
"configType"
:
{
"price"
:
"宝币兑换率"
,
"initGift"
:
"初次赠送"
,
"apiInitGift"
:
"API初次赠送"
,
"apiCallPrice"
:
"api调用价格"
},
"logLevel"
:
{
"debug"
:
0
,
"info"
:
1
,
"warn"
:
2
,
"error"
:
3
,
"fatal"
:
4
},
"msgType"
:
{
"sys"
:
"系统"
,
"single"
:
"单点"
,
"multi"
:
"群发"
,
"mryzSingle"
:
"每日易照单点"
,
"mryzLicense"
:
"群发"
,
},
"tradeType"
:
{
"fill"
:
"充值宝币"
,
"consume"
:
"消费宝币"
,
"gift"
:
"赠送宝币"
,
"giftMoney"
:
"红包"
,
"refund"
:
"退款"
,
"payment"
:
"付款"
,
},
"msgType"
:
{
"sys"
:
"系统"
,
"single"
:
"单点"
,
"multi"
:
"群发"
},
"node_type"
:{
"org"
:
"组织"
,
"arc"
:
"文档"
}
}
}
...
...
center-manage/app/base/db/models/msg/msghistory.js
0 → 100644
View file @
7c445ebd
const
system
=
require
(
"../../../system"
);
const
settings
=
require
(
"../../../../config/settings"
);
const
appconfig
=
system
.
getSysConfig
();
module
.
exports
=
(
db
,
DataTypes
)
=>
{
return
db
.
define
(
"msghistory"
,
{
msgType
:{
type
:
DataTypes
.
ENUM
,
allowNull
:
false
,
values
:
Object
.
keys
(
appconfig
.
pdict
.
msgType
),
},
app_id
:
DataTypes
.
INTEGER
,
company_id
:
DataTypes
.
INTEGER
,
sender
:
DataTypes
.
STRING
,
senderId
:
DataTypes
.
INTEGER
,
target
:
DataTypes
.
STRING
,
targetId
:
DataTypes
.
INTEGER
,
content
:
{
type
:
DataTypes
.
TEXT
(
'long'
),
allowNull
:
false
,
},
//需要在后台补充
isRead
:{
type
:
DataTypes
.
BOOLEAN
,
defaultValue
:
false
,
}
},{
paranoid
:
false
,
//假的删除
underscored
:
true
,
version
:
true
,
freezeTableName
:
true
,
//freezeTableName: true,
// define the table's name
tableName
:
'msghistory'
,
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}]
// }
]
});
}
center-manage/app/base/service/impl/msg/msghistorySve.js
View file @
7c445ebd
...
...
@@ -4,7 +4,7 @@ class MsgHistoryService extends ServiceBase{
constructor
(){
super
(
ServiceBase
.
getDaoName
(
MsgHistoryService
));
this
.
msgnoticeDao
=
system
.
getObject
(
"db.msgnoticeDao"
);
this
.
userDao
=
system
.
getObject
(
"db.userDao"
);
this
.
userDao
=
system
.
getObject
(
"db.
auth.
userDao"
);
this
.
redisClient
=
system
.
getObject
(
"util.redisClient"
);
this
.
businesslicenseDao
=
system
.
getObject
(
"db.businesslicenseDao"
);
...
...
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