📄 propertie.java#1.1
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -