"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.desc = void 0; var Action_1 = require("./Action"); exports.desc = { attributes: { mobile: { type: "varchar", params: { length: 16 } }, userId: { type: "ref", ref: "user" }, ableState: { type: "varchar", params: { length: 24 } } }, actionType: "crud", actions: Action_1.actions, indexes: [ { name: 'index_mobile_ableState', attributes: [ { name: 'mobile', direction: 'ASC' }, { name: 'ableState', direction: 'ASC' } ] } ] };