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; }