xieb
2024-04-13 f98b25a34d04c2acb9bf93e6cbd4e72fa2d81ba0
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
package com.dji.sample.wayline.model.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * @author sean
 * @version 1.1
 * @date 2022/6/1
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@TableName(value = "wayline_job_break_point",autoResultMap = true)
public class WaylineJobBreakPointEntity implements Serializable {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    @TableField("job_id")
    private String jobId;
 
    @TableField("bp_index")
    private Integer bpIndex;
 
    @TableField("state")
    private Integer state;
 
    @TableField("progress")
    private Double progress;
 
    @TableField("wayline_id")
    private Integer waylineId;
 
    @TableField("break_reason")
    private Integer breakReason;
 
    @TableField("latitude")
    private Double latitude;
 
    @TableField("longitude")
    private Double longitude;
 
    @TableField("height")
    private Double height;
 
    @TableField("attitude_head")
    private Double attitudeHead;
 
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Long createTime;
 
    @TableField(value = "update_time", fill = FieldFill.INSERT_UPDATE)
    private Long updateTime;
 
}