|
|
@ -19,7 +19,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
/** |
|
|
|
* @return 家庭编号 |
|
|
|
*/ |
|
|
|
public int? getFamilyNumber() { |
|
|
|
public int? getFamilyNumber() |
|
|
|
{ |
|
|
|
return familyNumber; |
|
|
|
} |
|
|
|
|
|
|
@ -28,7 +29,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
* 参数示例:<pre></pre> |
|
|
|
* 此参数必填 |
|
|
|
*/ |
|
|
|
public void setFamilyNumber(int familyNumber) { |
|
|
|
public void setFamilyNumber(int familyNumber) |
|
|
|
{ |
|
|
|
this.familyNumber = familyNumber; |
|
|
|
} |
|
|
|
|
|
|
@ -38,7 +40,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
/** |
|
|
|
* @return 父亲对象,可以为空 |
|
|
|
*/ |
|
|
|
public ExamplePerson getFather() { |
|
|
|
public ExamplePerson getFather() |
|
|
|
{ |
|
|
|
return father; |
|
|
|
} |
|
|
|
|
|
|
@ -47,7 +50,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
* 参数示例:<pre></pre> |
|
|
|
* 此参数必填 |
|
|
|
*/ |
|
|
|
public void setFather(ExamplePerson father) { |
|
|
|
public void setFather(ExamplePerson father) |
|
|
|
{ |
|
|
|
this.father = father; |
|
|
|
} |
|
|
|
|
|
|
@ -57,7 +61,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
/** |
|
|
|
* @return 母亲对象,可以为空 |
|
|
|
*/ |
|
|
|
public ExamplePerson getMother() { |
|
|
|
public ExamplePerson getMother() |
|
|
|
{ |
|
|
|
return mother; |
|
|
|
} |
|
|
|
|
|
|
@ -66,7 +71,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
* 参数示例:<pre></pre> |
|
|
|
* 此参数必填 |
|
|
|
*/ |
|
|
|
public void setMother(ExamplePerson mother) { |
|
|
|
public void setMother(ExamplePerson mother) |
|
|
|
{ |
|
|
|
this.mother = mother; |
|
|
|
} |
|
|
|
|
|
|
@ -76,7 +82,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
/** |
|
|
|
* @return 孩子列表 |
|
|
|
*/ |
|
|
|
public ExamplePerson[] getChildren() { |
|
|
|
public ExamplePerson[] getChildren() |
|
|
|
{ |
|
|
|
return children; |
|
|
|
} |
|
|
|
|
|
|
@ -85,7 +92,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
* 参数示例:<pre></pre> |
|
|
|
* 此参数必填 |
|
|
|
*/ |
|
|
|
public void setChildren(ExamplePerson[] children) { |
|
|
|
public void setChildren(ExamplePerson[] children) |
|
|
|
{ |
|
|
|
this.children = children; |
|
|
|
} |
|
|
|
|
|
|
@ -95,7 +103,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
/** |
|
|
|
* @return 拥有的汽车信息 |
|
|
|
*/ |
|
|
|
public ExampleCar[] getOwnedCars() { |
|
|
|
public ExampleCar[] getOwnedCars() |
|
|
|
{ |
|
|
|
return ownedCars; |
|
|
|
} |
|
|
|
|
|
|
@ -104,7 +113,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
* 参数示例:<pre></pre> |
|
|
|
* 此参数必填 |
|
|
|
*/ |
|
|
|
public void setOwnedCars(ExampleCar[] ownedCars) { |
|
|
|
public void setOwnedCars(ExampleCar[] ownedCars) |
|
|
|
{ |
|
|
|
this.ownedCars = ownedCars; |
|
|
|
} |
|
|
|
|
|
|
@ -114,7 +124,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
/** |
|
|
|
* @return 所住的房屋信息 |
|
|
|
*/ |
|
|
|
public ExampleHouse getMyHouse() { |
|
|
|
public ExampleHouse getMyHouse() |
|
|
|
{ |
|
|
|
return myHouse; |
|
|
|
} |
|
|
|
|
|
|
@ -123,7 +134,8 @@ namespace com.alibaba.china.openapi.client.example.param.apiexample |
|
|
|
* 参数示例:<pre></pre> |
|
|
|
* 此参数必填 |
|
|
|
*/ |
|
|
|
public void setMyHouse(ExampleHouse myHouse) { |
|
|
|
public void setMyHouse(ExampleHouse myHouse) |
|
|
|
{ |
|
|
|
this.myHouse = myHouse; |
|
|
|
} |
|
|
|
|
|
|
|