Commit 4bd54b04 by Sxy

feat : add 交付人员

parent 8db60d12
...@@ -89,7 +89,20 @@ module.exports = (db, DataTypes) => { ...@@ -89,7 +89,20 @@ module.exports = (db, DataTypes) => {
master_source_number: { //业务主订单号 master_source_number: { //业务主订单号
allowNull: true, allowNull: true,
type: DataTypes.STRING type: DataTypes.STRING
} },
delivery_man_id: {// 交付员id
allowNull: true,
type: DataTypes.STRING
},
delivery_man_name: {// 交付员姓名
allowNull: true,
type: DataTypes.STRING
},
delivery_man_opcode: {// 交付员opcode
allowNull: true,
type: DataTypes.STRING
},
}, { }, {
paranoid: false,//假的删除 paranoid: false,//假的删除
underscored: true, 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