张天森
2022-11-08 947d016e4bd349b78d540e3a869f55d68b2c610c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.panzhihua.common.model.vos.community.bigscreen;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zzj
 */
@Data
@ApiModel("返攀登记居家隔离数据")
public class IndexReserve {
    @ApiModelProperty("返攀登记数据")
    private IndexBackReserve indexBackReserve;
    @ApiModelProperty("居家隔离数据")
    private IndexHomeQuarantine indexHomeQuarantine;
}