| package com.doumee.dao.business.dto; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import org.springframework.format.annotation.DateTimeFormat; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @author RenKang | 
|  */ | 
| @Data | 
| public class SmsCheckDTO { | 
|   | 
|     @ApiModelProperty(value = "业务主键", example = "1") | 
|     private Integer businessId; | 
|   | 
|     @ApiModelProperty(value = "验证码") | 
|     private String code; | 
|   | 
|   | 
| } |