propertie.java

来自「数据库远程同步软件NetBeans项目源文件 项目采用Jdesktop集成组件」· Java 代码 · 共 64 行

JAVA
64
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package databasesyncdesktopapplication.entity;import java.io.Serializable;import java.util.Date;/** * * @author mjw917 */public class Propertie  implements Serializable{private static final long serialVersionUID = -6864457645441042525L;      public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public String getSourceFilePath() {        return sourceFilePath;    }    public void setSourceFilePath(String sourceFilePath) {        this.sourceFilePath = sourceFilePath;    }    public String getTargetFilePath() {        return targetFilePath;    }    public void setTargetFilePath(String targetFilePath) {        this.targetFilePath = targetFilePath;    }    public Date getTaskTime() {        return taskTime;    }    public void setTaskTime(Date taskTime) {        this.taskTime = taskTime;    }    public Long getId() {        return id;    }    public void setId(Long id) {        this.id = id;    }private Long id;private String name;//配置名private String sourceFilePath;//源数据库链接配置private String targetFilePath;//目的数据库链接配置private Date taskTime;//任务的运行时间}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?