Commit bfcfea3d by 王昆

gsb

parent 2f6dea05
......@@ -51,6 +51,7 @@ module.exports = (db, DataTypes) => {
red_status: {type: DataTypes.STRING, field: 'red_status', allowNull: true,comment:'1 未红冲 2 已红冲 3 红冲中' },
bookkeeping: {type: DataTypes.STRING, field: 'bookkeeping', allowNull: true, defaultValue:0, comment:'是否记账 0未记账 1已记账' },
saas_deliver_api: {type: DataTypes.STRING, field: 'saas_deliver_api', allowNull: true, defaultValue:'', comment:'saas系统状态通知api' },
ali_deliver_api:{ type: DataTypes.STRING, allowNull: true, defaultValue: null ,comment:"发票状态更新回调api"},
created_at: { type: DataTypes.DATE, field: 'created_at', allowNull: false, defaultValue: DataTypes.NOW },
updated_at: { type: DataTypes.DATE, field: 'updated_at', allowNull: false, defaultValue: DataTypes.NOW },
deleted_at: { type: DataTypes.DATE, allowNull: true },
......
......@@ -12,6 +12,7 @@ module.exports = (db, DataTypes) => {
deliver_mail_no: { type: DataTypes.STRING, field: 'deliver_mail_no', allowNull: true, defaultValue: "", comment: '交付商交付快递单号' },
deliver_img: { type: DataTypes.STRING, field: 'deliver_img', allowNull: true, defaultValue: "", comment: '交接单' },
operator_id: { type: DataTypes.STRING, field: 'operator_id', allowNull: true, defaultValue:"", comment: '交付商业务员id' },
operator_path: { type: DataTypes.STRING, field: 'operator_path', allowNull: true, defaultValue:"", comment: '交付商业务员path' },
created_at: { type: DataTypes.DATE, field: 'created_at', allowNull: false, defaultValue: DataTypes.NOW },
updated_at: { type: DataTypes.DATE, field: 'updated_at', allowNull: false, defaultValue: DataTypes.NOW },
deleted_at: { type: DataTypes.DATE, field: 'deleted_at', allowNull: 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