package com.smartor.domain; 
 | 
  
 | 
import com.fasterxml.jackson.annotation.JsonFormat; 
 | 
import com.ruoyi.common.annotation.Excel; 
 | 
import com.ruoyi.common.core.domain.BaseEntity; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.Date; 
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 河南数据采集入参对象 
 | 
 * 
 | 
 * @author smartor 
 | 
 * @date 2023-03-04 
 | 
 */ 
 | 
@ApiModel(value = "HnDataGatherVO", description = "河南数据采集入参对象") 
 | 
@Data 
 | 
public class HnDataGatherVO extends BaseEntity { 
 | 
  
 | 
    /** 
 | 
     * 开始出院日期 
 | 
     */ 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd") 
 | 
    @ApiModelProperty(value = "开始出院日期") 
 | 
    private Date startTime; 
 | 
  
 | 
    /** 
 | 
     * 结束出院日期 
 | 
     */ 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    @Excel(name = "  ", width = 30, dateFormat = "yyyy-MM-dd") 
 | 
    @ApiModelProperty(value = "结束出院日期") 
 | 
    private Date endTime; 
 | 
  
 | 
  
 | 
  
 | 
  
 | 
  
 | 
} 
 |