oak-pay-business/es/oak-app-domain/WechatMpShip/Storage.js

43 lines
917 B
JavaScript

import { genericActions as actions } from "oak-domain/lib/actions/action";
export const 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
}
},
systemId: {
notNull: true,
type: "ref",
ref: "system"
},
disabled: {
notNull: true,
type: "boolean"
},
applicationId: {
notNull: true,
type: "ref",
ref: "application"
}
},
actionType: "crud",
actions
};