mg
2022-09-29 3441ace2fd71ed09d31b33f8d4b1b9c276239ab7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.ycl.bo.casePool;
 
import com.ycl.entity.caseHandler.ArrivalSituation;
import com.ycl.entity.caseHandler.Investigation;
import com.ycl.entity.caseHandler.Writ;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * <p>
 *  现场情况 类
 * </p>
 *
 * @author mg
 * @since 2022-09-29
 */
@Data
public class CurrentSitVo {
    /**
     * 到达现场情况
     */
    @ApiModelProperty(value = "到达现场情况",dataType = "ArrivalSituation")
    private ArrivalSituation arrivalSituation;
    /**
     * 调查取证
     */
    @ApiModelProperty(value = "调查取证",dataType = "Investigation")
    private Investigation investigation;
    /**
     * 告知违法
     */
    @ApiModelProperty(value = "告知违法",dataType = "Writ")
    private Writ writ;
}