工单表结构修改
This commit is contained in:
@@ -232,8 +232,12 @@ CREATE TABLE workcase.tb_workcase(
|
||||
username VARCHAR(200) NOT NULL, -- 来客姓名
|
||||
phone VARCHAR(20) NOT NULL, -- 来客电话
|
||||
type VARCHAR(50) NOT NULL, -- 故障类型
|
||||
device VARCHAR(50) NOT NULL, -- 设备名称
|
||||
device_code VARCHAR(50) NOT NULL, -- 设备代码
|
||||
device VARCHAR(50) DEFAULT NULL, -- 设备名称
|
||||
device_code VARCHAR(50) DEFAULT NULL, -- 设备代码
|
||||
device_name_plate VARCHAR(50) DEFAULT NULL, -- 设备名称牌
|
||||
device_name_plate_img VARCHAR(50) NOT NULL, -- 设备名称牌图片
|
||||
address VARCHAR(1000) DEFAULT NULL, -- 现场地址
|
||||
description VARCHAR(1000) DEFAULT NULL, -- 故障描述
|
||||
imgs VARCHAR(50)[] DEFAULT '{}', -- 工单图片id
|
||||
emergency VARCHAR(50) NOT NULL DEFAULT 'normal', -- 紧急程度 normal-普通 emergency-紧急
|
||||
status VARCHAR(50) NOT NULL DEFAULT 'pending', -- 状态 pending-待处理 processing-处理中 done-已完成
|
||||
|
||||
Reference in New Issue
Block a user