32 lines
707 B
JavaScript
32 lines
707 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.desc = void 0;
|
|
const action_1 = require("oak-domain/lib/actions/action");
|
|
exports.desc = {
|
|
attributes: {
|
|
sort: {
|
|
notNull: true,
|
|
type: "decimal",
|
|
params: {
|
|
precision: 12,
|
|
scale: 8
|
|
}
|
|
},
|
|
phatom1: {
|
|
type: "int",
|
|
params: {
|
|
width: 8,
|
|
signed: true
|
|
}
|
|
},
|
|
phatom2: {
|
|
type: "varchar",
|
|
params: {
|
|
length: 64
|
|
}
|
|
}
|
|
},
|
|
actionType: "crud",
|
|
actions: action_1.genericActions
|
|
};
|