sunshine
2024-11-05 00b4581009af28098da4286a8ef9f4d72c7c5728
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
package com.nova.sankuai.domain.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author weikangdi
 * @create 2022/3/18
 */
@Data
@ApiModel(value = "资产信息")
public class CustomerAssetDto {
 
    @ApiModelProperty(value = "主键")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "社保缴纳")
    private Integer socialSecurity;
 
    @ApiModelProperty(value = "公积金缴纳")
    private Integer providentFund;
 
    @ApiModelProperty(value = "房产情况")
    private Integer houseStatus;
 
    @ApiModelProperty(value = "车辆情况")
    private Integer carStatus;
 
    @ApiModelProperty(value = "保险保单")
    private Integer insurancePolicy;
 
    @ApiModelProperty(value = "信用卡")
    private Integer creditCard;
 
}