package com.doumee.dao.business.dto; 
 | 
  
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2025/10/11 16:01 
 | 
 */ 
 | 
@Data 
 | 
public class AlcoholTestAlarmDTO { 
 | 
  
 | 
    @ApiModelProperty(value = "用户主键") 
 | 
    private Integer memberId; 
 | 
  
 | 
    @ApiModelProperty(value = "酒精度数") 
 | 
    private String alcoholNum; 
 | 
  
 | 
  
 | 
} 
 |