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>; }