Commit 45d31ca0 by 高宇强

gyq

parent 8295fbd6
...@@ -5,7 +5,7 @@ const appconfig = system.getSysConfig(); ...@@ -5,7 +5,7 @@ const appconfig = system.getSysConfig();
* 交付单表 * 交付单表
*/ */
module.exports = (db, DataTypes) => { module.exports = (db, DataTypes) => {
return db.define("delivery_bill", { return db.define("deliverybill", {
delivery_code: { //交付单编号 delivery_code: { //交付单编号
allowNull: true, allowNull: true,
type: DataTypes.STRING type: DataTypes.STRING
......
...@@ -5,7 +5,7 @@ const appconfig = system.getSysConfig(); ...@@ -5,7 +5,7 @@ const appconfig = system.getSysConfig();
* 状态流转记录表 * 状态流转记录表
*/ */
module.exports = (db, DataTypes) => { module.exports = (db, DataTypes) => {
return db.define("status_log", { return db.define("statuslog", {
flow_type: { // 流程类型 (商机、方案、交付单) flow_type: { // 流程类型 (商机、方案、交付单)
allowNull: false, allowNull: false,
type: DataTypes.STRING type: DataTypes.STRING
......
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