zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
using com.alibaba.openapi.client.primitive;
using com.alibaba.openapi.client.util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
 
 
namespace com.alibaba.china.openapi.client.example.param.apiexample
{
[DataContract(Namespace = "com.alibaba.openapi.client")]
    public class ExampleFamily
    {
 
       [DataMember(Order = 1)]
    private int? familyNumber;
    
        /**
       * @return 家庭编号
    */
        public int? getFamilyNumber() {
                   return familyNumber;
            }
    
    /**
     * 设置家庭编号     *
     * 参数示例:<pre></pre>     
             * 此参数必填
          */
    public void setFamilyNumber(int familyNumber) {
                          this.familyNumber = familyNumber;
                 }
    
        [DataMember(Order = 2)]
    private ExamplePerson father;
    
        /**
       * @return 父亲对象,可以为空
    */
        public ExamplePerson getFather() {
                   return father;
            }
    
    /**
     * 设置父亲对象,可以为空     *
     * 参数示例:<pre></pre>     
             * 此参数必填
          */
    public void setFather(ExamplePerson father) {
                          this.father = father;
                 }
    
        [DataMember(Order = 3)]
    private ExamplePerson mother;
    
        /**
       * @return 母亲对象,可以为空
    */
        public ExamplePerson getMother() {
                   return mother;
            }
    
    /**
     * 设置母亲对象,可以为空     *
     * 参数示例:<pre></pre>     
             * 此参数必填
          */
    public void setMother(ExamplePerson mother) {
                          this.mother = mother;
                 }
    
        [DataMember(Order = 4)]
    private ExamplePerson[] children;
    
        /**
       * @return 孩子列表
    */
        public ExamplePerson[] getChildren() {
                   return children;
            }
    
    /**
     * 设置孩子列表     *
     * 参数示例:<pre></pre>     
             * 此参数必填
          */
    public void setChildren(ExamplePerson[] children) {
                          this.children = children;
                 }
    
        [DataMember(Order = 5)]
    private ExampleCar[] ownedCars;
    
        /**
       * @return 拥有的汽车信息
    */
        public ExampleCar[] getOwnedCars() {
                   return ownedCars;
            }
    
    /**
     * 设置拥有的汽车信息     *
     * 参数示例:<pre></pre>     
             * 此参数必填
          */
    public void setOwnedCars(ExampleCar[] ownedCars) {
                          this.ownedCars = ownedCars;
                 }
    
        [DataMember(Order = 6)]
    private ExampleHouse myHouse;
    
        /**
       * @return 所住的房屋信息
    */
        public ExampleHouse getMyHouse() {
                   return myHouse;
            }
    
    /**
     * 设置所住的房屋信息     *
     * 参数示例:<pre></pre>     
             * 此参数必填
          */
    public void setMyHouse(ExampleHouse myHouse) {
                          this.myHouse = myHouse;
                 }
    
    
  }
}