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
a0d68c4f
Commit
a0d68c4f
authored
Jan 02, 2020
by
宋毅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tj
parent
a04998ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
+2
-1
igirl-channel/app/base/db/models/dbcorder/orderinfo.js
+1
-0
igirl-channel/app/base/db/models/dbcorder/orderproduct.js
+1
-1
No files found.
igirl-channel/app/base/db/models/dbcorder/orderinfo.js
View file @
a0d68c4f
...
...
@@ -10,6 +10,7 @@ module.exports = (db, DataTypes) => {
channelUserId
:
DataTypes
.
STRING
(
64
),
// 渠道用户ID
ownerUserId
:
DataTypes
.
STRING
(
20
),
// 拥有渠道用户ID
needNo
:
DataTypes
.
STRING
(
64
),
// 需求单号
needNoOrderNo
:
DataTypes
.
STRING
(
64
),
// 需求订单号
payTime
:
DataTypes
.
DATE
,
// 渠道有支付时间则用渠道的支付时间
quantity
:
DataTypes
.
INTEGER
,
// 订单数量(即产品的倍数,默认值为1)
serviceQuantity
:
DataTypes
.
INTEGER
,
// 订单服务数量(即与订单数量相对应)
...
...
igirl-channel/app/base/db/models/dbcorder/orderproduct.js
View file @
a0d68c4f
...
...
@@ -16,7 +16,7 @@ module.exports = (db, DataTypes) => {
proPrice
:
DataTypes
.
DOUBLE
,
// 产品价格
quantity
:
DataTypes
.
INTEGER
,
// 订单数量(即产品的倍数,默认值为1)
opPayType
:
DataTypes
.
STRING
(
10
),
// 操作付款类型:00: 创建订单, 10: 补单
serviceItemSnapshot
:
DataTypes
.
TEXT
,
//产品快照
serviceItemSnapshot
:
DataTypes
.
TEXT
(
'long'
)
,
//产品快照
},
{
paranoid
:
true
,
//假的删除
underscored
:
true
,
...
...
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