14 lines
548 B
TypeScript
14 lines
548 B
TypeScript
import { Boolean, Int, Decimal } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { Schema as Application } from 'oak-general-business/lib/entities/Application';
|
|
import { EntityDesc } from 'oak-domain/lib/types';
|
|
export interface Schema extends EntityShape {
|
|
taxLossRatio?: Decimal<4, 2>;
|
|
refundGapDays?: Int<4>;
|
|
refundCompensateRatio?: Int<4>;
|
|
needReceiving?: Boolean;
|
|
application: Application;
|
|
enabled: Boolean;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|