T_Company.js
745 字节
/* jshint indent: 2 */
module.exports = function (sequelize, DataTypes) {
return sequelize.define('T_Company', {
Id: {
type: DataTypes.INTEGER(11),
allowNull: false,
primaryKey: true
},
Type: {
type: DataTypes.INTEGER(6),
allowNull: false,
primaryKey: true
},
Name: {
type: DataTypes.STRING(50),
allowNull: true
},
Group: {
type: DataTypes.STRING(10),
allowNull: true
},
OrderId: {
type: DataTypes.INTEGER(11),
allowNull: true
}
}, {
tableName: 'T_Company'
});
};
//# sourceMappingURL=T_Company.js.map