浏览代码

[add]

檀家のクラス定義を作成
poohr 1 个月前
父节点
当前提交
59c2af6c5f
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13
    0
      src/app/models/danka.ts

+ 13
- 0
src/app/models/danka.ts 查看文件

@@ -0,0 +1,13 @@
1
+export interface Phone {
2
+  tel: string;
3
+  note: string;
4
+}
5
+
6
+export interface Danka {
7
+  id: string;
8
+  householdName: string;
9
+  householder: string;
10
+  postalCode: string;
11
+  address: string;
12
+  phones: Phone[];
13
+}

正在加载...
取消
保存