package com.doumee.dao.business.vo; 
 | 
  
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
/** 
 | 
 * Created by IntelliJ IDEA. 
 | 
 * 
 | 
 * @Author : Rk 
 | 
 * @create 2024/2/21 14:13 
 | 
 */ 
 | 
@Data 
 | 
public class ApplyNoticeVO { 
 | 
  
 | 
    @ApiModelProperty(value = "待签署数量") 
 | 
    private Integer  waitSignNum; 
 | 
  
 | 
    @ApiModelProperty(value = "续保数量") 
 | 
    private Integer  renewalNum; 
 | 
  
 | 
} 
 |