27 lines
582 B
JavaScript
27 lines
582 B
JavaScript
import { genericActions as actions } from "oak-domain/lib/actions/action";
|
|
export const desc = {
|
|
attributes: {
|
|
payNotifyUrl: {
|
|
notNull: true,
|
|
type: "varchar",
|
|
params: {
|
|
length: 128
|
|
}
|
|
},
|
|
refundNotifyUrl: {
|
|
notNull: true,
|
|
type: "varchar",
|
|
params: {
|
|
length: 128
|
|
}
|
|
},
|
|
systemId: {
|
|
notNull: true,
|
|
type: "ref",
|
|
ref: "system"
|
|
}
|
|
},
|
|
actionType: "crud",
|
|
actions
|
|
};
|