123456789101112131415161718192021222324252627282930313233343536373839 |
-
- class CodeView {
- public Value: string;
- public Key: string;
-
- constructor() {
- this.Value = "";
- this.Key = "";
- }
- }
-
-
- class Province extends CodeView {
- public Child: City[];
-
- constructor() {
- super();
- this.Child = [];
- }
- }
-
-
- class City extends CodeView {
- public Child: County[];
-
- constructor() {
- super();
- this.Child = [];
- }
- }
-
-
- class County extends CodeView {
- constructor() {
- super();
- }
- }
-
- export { CodeView, Province, City, County };
|