package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2024/12/17 20:30
|
*/
|
@Data
|
@TableName("t_task_detail_vehicles_channel")
|
public class TaskDetailVehiclesChannel {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 任务id
|
*/
|
@TableField("patrol_task_id")
|
private Integer patrolTaskId;
|
/**
|
* 任务明细id
|
*/
|
@TableField("task_detail_id")
|
private Integer taskDetailId;
|
/**
|
* 任务车船明细id
|
*/
|
@TableField("task_detail_vehicles_id")
|
private Integer taskDetailVehiclesId;
|
/**
|
* 视频通道
|
*/
|
@TableField("video_channel")
|
private Integer videoChannel;
|
/**
|
* 图片地址
|
*/
|
@TableField("image_url")
|
private String imageUrl;
|
/**
|
* 系统审核状态(1=未执行,2=正常,3=异常)
|
*/
|
@TableField("sys_status")
|
private Integer sysStatus;
|
/**
|
* 系统审核时间
|
*/
|
@TableField("sys_create_time")
|
private LocalDateTime sysCreateTime;
|
/**
|
* 人工审核状态(1=未执行,2=正常,3=异常)
|
*/
|
@TableField("artificial_status")
|
private Integer artificialStatus;
|
/**
|
* 人工审核时间
|
*/
|
@TableField("artificial_create_time")
|
private LocalDateTime artificialCreateTime;
|
/**
|
* 人工审核人id
|
*/
|
@TableField("artificial_user_id")
|
private Integer artificialUserId;
|
/**
|
* 人工审核备注
|
*/
|
@TableField("remark")
|
private String remark;
|
/**
|
* 模型审核结果
|
*/
|
@TableField("result")
|
private String result;
|
}
|