oak-general-business/es/entities/Address.d.ts

14 lines
397 B
TypeScript

import { String, Boolean, Text } from 'oak-domain/lib/types/DataType';
import { EntityShape } from 'oak-domain/lib/types/Entity';
import { Schema as Area } from './Area';
export interface Schema extends EntityShape {
detail: String<32>;
area: Area;
phone: String<12>;
name: String<32>;
default: Boolean;
remark?: Text;
entity?: String<32>;
entityId?: String<64>;
}