| | |
| | | package com.doumee.dao.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | private String carColor; |
| | | |
| | | @ApiModelProperty(value = "驾驶证有效期开始时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date cardStartDate; |
| | | |
| | | @ApiModelProperty(value = "驾驶证有效期结束时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date cardEndDate; |
| | | |
| | | @NotEmpty(message = "身份证正面照不能为空") |
| | |
| | | @ApiModelProperty(value = "其他资料照片(最多3张,mutifile objType=8)") |
| | | private List<String> otherImgUrls; |
| | | |
| | | @NotEmpty(message = "支付宝提现账户不能为空") |
| | | @ApiModelProperty(value = "支付宝提现账户", required = true) |
| | | private String aliAccount; |
| | | |
| | | @NotEmpty(message = "支付宝实名姓名不能为空") |
| | | @ApiModelProperty(value = "支付宝实名姓名", required = true) |
| | | private String aliName; |
| | | |
| | | } |