Commit ada9e984 by 王勇飞

gyq

parent 5689013f
......@@ -63,7 +63,7 @@ module.exports = (db, DataTypes) => {
type: DataTypes.STRING
},
master_source_number:{//主订单号
allowNull: false,
allowNull: true,
type: DataTypes.STRING
},
settle_status: {// 服务单流转状态
......@@ -72,7 +72,7 @@ module.exports = (db, DataTypes) => {
defaultValue:'waittosettle'
},
selling_price: {//售价
allowNull: false,
allowNull: true,
type: DataTypes.INTEGER
},
cost_price: {//成本价
......@@ -119,7 +119,10 @@ module.exports = (db, DataTypes) => {
allowNull: true,
type: DataTypes.STRING
},
biz_id: {// 财税服务示例id
allowNull: true,
type: DataTypes.STRING
}
}, {
paranoid: false,//假的删除
underscored: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment