#
Junjie
12 小时以前 c0df58a6fb50ee32e7336b5901000549700ebc82
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
package com.zy.asrs.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@TableName("asr_bas_station_path_rule")
public class BasStationPathRule implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    @TableField("rule_code")
    private String ruleCode;
 
    @TableField("rule_name")
    private String ruleName;
 
    private Integer priority;
 
    private Short status;
 
    @TableField("scene_type")
    private String sceneType;
 
    @TableField("start_station_id")
    private Integer startStationId;
 
    @TableField("end_station_id")
    private Integer endStationId;
 
    @TableField("profile_code")
    private String profileCode;
 
    @TableField("hard_json")
    private String hardJson;
 
    @TableField("waypoint_json")
    private String waypointJson;
 
    @TableField("soft_json")
    private String softJson;
 
    @TableField("fallback_json")
    private String fallbackJson;
 
    private String memo;
 
    @TableField("create_time")
    private Date createTime;
 
    @TableField("update_time")
    private Date updateTime;
}