改成:
create table `order`(
        Id int(11) not null auto_increment,
        orderId  int(11)  null,
        UserId int(11) null,
        SubmitTime datetime null,
        ConsignmentTime datetime null,
        TotalPrice float null,
        content text null,
        IPAddress varchar(20) null,
        IsPayoff int(11) null,
        IsSales int(11) null,
        primary key(Id));因为order是关键字,所以要加反引号(1左边的那个键)