Pu Zhibing
2024-12-30 443dffce29daf6ed03b3c2137738925e315fb09f
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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;
}