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

18 lines
372 B
JavaScript

import { genericActions as actions } from "oak-domain/lib/actions/action";
export const desc = {
attributes: {
shipId: {
notNull: true,
type: "ref",
ref: "ship"
},
orderId: {
notNull: true,
type: "ref",
ref: "order"
}
},
actionType: "crud",
actions
};