MySQL 5.6.14 Source Code Document
|
Public Member Functions | |
int | getId () |
void | setId (int id) |
int | getCustomerId () |
void | setCustomerId (int name) |
String | getDescription () |
void | setDescription (String name) |
double | getValue () |
void | setValue (double value) |
Order represents an order in a CRM system.
CREATE TABLE a ( id INT NOT NULL, // order id cint INT, // customer id clong BIGINT, cfloat FLOAT, cdouble DOUBLE, // total value cstring VARCHAR(100), // description CONSTRAINT PK_A_0 PRIMARY KEY (id) ) ENGINE=ndbcluster DEFAULT CHARSET=latin1;
Definition at line 40 of file Order.java.