feiyu02
2025-02-21 dacef58ee7c44dffdd40cb646435c2993ad7a217
src/main/kotlin/com/flightfeather/uav/domain/entity/Mission.java
@@ -20,6 +20,15 @@
    @Column(name = "end_time")
    private Date endTime;
    @Column(name = "district_name")
    private String districtName;
    /**
     * 数据是否已经拉取入库
     */
    @Column(name = "data_pulled")
    private Boolean dataPulled;
    /**
     * @return mission_code
     */
@@ -89,4 +98,36 @@
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
    /**
     * @return district_name
     */
    public String getDistrictName() {
        return districtName;
    }
    /**
     * @param districtName
     */
    public void setDistrictName(String districtName) {
        this.districtName = districtName == null ? null : districtName.trim();
    }
    /**
     * 获取数据是否已经拉取入库
     *
     * @return data_pulled - 数据是否已经拉取入库
     */
    public Boolean getDataPulled() {
        return dataPulled;
    }
    /**
     * 设置数据是否已经拉取入库
     *
     * @param dataPulled 数据是否已经拉取入库
     */
    public void setDataPulled(Boolean dataPulled) {
        this.dataPulled = dataPulled;
    }
}