initial upload

This commit is contained in:
Kai Waggeling 2025-05-17 16:23:48 +02:00
parent ac114da487
commit 7c1cfdff51
63 changed files with 6883 additions and 0 deletions

View file

@ -0,0 +1,49 @@
import {
DataTypes
} from 'sequelize';
import {
DBLogger,
LabelDB
} from './db_conn.mjs'
import {
Medium
} from "./media.model.mjs";
export const Printer = LabelDB.define('printer', {
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true
},
name: {
type: DataTypes.STRING,
allowNull: false
},
type: {
type: DataTypes.ENUM,
values: [
'zpl'
],
allowNull: false
},
density: {
type: DataTypes.INTEGER,
allowNull: false
},
socket_addr: {
type: DataTypes.STRING,
allowNull: false
},
socket_port: {
type: DataTypes.INTEGER,
allowNull: false
}
}, {
timestamps: false
});
Medium.hasMany(Printer);
Printer.belongsTo(Medium);