13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import { String, Int, Datetime, Image, 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;
|
|
};
|