You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
输入SQL
CREATE TABLE test ( id varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, housing char(1) NULL DEFAULT NULL COMMENT '',
PRIMARY KEY (id) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
输出代码
public class Test implements Serializable {
private static final long serialVersionUID = 1L;
/**
* id
*/
private String id;
public Test() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
The text was updated successfully, but these errors were encountered:
输入SQL
CREATE TABLE
test
(id
varchar(40) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,housing
char(1) NULL DEFAULT NULL COMMENT '',PRIMARY KEY (
id
) USING BTREE) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
输出代码
public class Test implements Serializable {
}
The text was updated successfully, but these errors were encountered: