package com.tievd.jyz.entity.vo;
|
|
import com.tievd.jyz.entity.PatrolRecord;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
/**
|
* <p>
|
* 巡查记录表
|
* </p>
|
*
|
* @author
|
* @since 2023-08-15
|
*/
|
@Data
|
@Accessors(chain = true)
|
@Schema(name = "PatrolRecord", description = "巡查记录表")
|
public class PatrolRecordVo extends PatrolRecord {
|
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "ai分析情况")
|
private String aiNum;
|
|
@Schema(description = "审核情况")
|
private String auditNum;
|
|
@Schema(description = "总分")
|
private int score;
|
|
@Schema(description = "审核人")
|
private String auditUser;
|
|
@Schema(description = "审核时间")
|
private String auditTime;
|
|
}
|