DDL
CREATE TABLE `51` (
`complainId` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`orderId` int(11) NOT NULL DEFAULT '0' COMMENT '订单ID',
`complanType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '投诉类型',
`complainTarget` int(11) NOT NULL DEFAULT '0' COMMENT '投诉人ID',
`resondTarget` int(11) NOT NULL COMMENT '应诉人ID',
`needRespond` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否需要应付(0:不需要1:需要)',
`complainContent` text NOT NULL COMMENT '投诉内容',
`complainAnnex` varchar(255) DEFAULT NULL COMMENT '投诉附件',
`complainTime` datetime NOT NULL COMMENT '创建时间',
`responTime` datetime DEFAULT NULL,
`finalResult` text COMMENT '仲裁结果',
`finalHandleStaffId` int(11) DEFAULT '0' COMMENT '仲裁人ID',
PRIMARY KEY (`complainId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;