huanghongfa
2020-12-14 5b88589584bb2b61b481ade592f6f8106556782d
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
package com.panzhihua.common.model.vos.user;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 家庭
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2020-12-14 16:53
 **/
@Data
@ApiModel("社区》社区管理》家庭信息")
public class ComMngFamilyInfoVO {
 
    @ApiModelProperty("自增id")
    private Long id;
 
    @ApiModelProperty("丈夫 人员信息id")
    private Long husbandId;
 
    @ApiModelProperty("妻子 人员信息id")
    private Long wifeId;
 
    @ApiModelProperty("父亲 人员信息id")
    private Long fatherId;
 
    @ApiModelProperty("母亲 人员信息id")
    private Long motherId;
 
    @ApiModelProperty("子女 人员信息id列表信息,以逗号分隔")
    private String childrenIds;
 
    @ApiModelProperty("岳父 人员 id")
    private Long fatherInLawId;
 
    @ApiModelProperty("岳母 人员 id")
    private Long motherInLawId;
 
    @ApiModelProperty("本人id")
    private Long userId;
}