liwen
11 months ago
7 changed files with 111 additions and 18 deletions
@ -0,0 +1,55 @@ |
|||||||
|
package com.hnac.hzims.safeproduct.vo; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author liwen |
||||||
|
* @date 2024-01-15 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ApiModel(value = "演练记录表VO类") |
||||||
|
public class RehearsalDetailVO { |
||||||
|
|
||||||
|
@ApiModelProperty("编码") |
||||||
|
private String code; |
||||||
|
|
||||||
|
@ApiModelProperty("参演人员") |
||||||
|
private String peopleName; |
||||||
|
|
||||||
|
@ApiModelProperty("演练实际开始时间") |
||||||
|
private Date actualStartTime; |
||||||
|
|
||||||
|
@ApiModelProperty("演练实际结束时间") |
||||||
|
private Date actualEndTime; |
||||||
|
|
||||||
|
@ApiModelProperty("演练记录") |
||||||
|
private String record; |
||||||
|
|
||||||
|
@ApiModelProperty("演练评价") |
||||||
|
private String comment; |
||||||
|
|
||||||
|
@ApiModelProperty("演练图片") |
||||||
|
private String imgPath; |
||||||
|
|
||||||
|
@ApiModelProperty("演练附件") |
||||||
|
private String filePath; |
||||||
|
|
||||||
|
@ApiModelProperty("单位") |
||||||
|
private String unit; |
||||||
|
|
||||||
|
@ApiModelProperty("演练地点") |
||||||
|
private String location; |
||||||
|
|
||||||
|
@ApiModelProperty("总指挥") |
||||||
|
private String commander; |
||||||
|
|
||||||
|
@ApiModelProperty("演练方式") |
||||||
|
private String rehearsalMethod; |
||||||
|
|
||||||
|
@ApiModelProperty("演练科目") |
||||||
|
private String subject; |
||||||
|
} |
Binary file not shown.
Loading…
Reference in new issue