📄 drivetype.java
字号:
/*
* Created on 2004-10-15 TODO To change the template for this generated file go to Window - Preferences - Java - Code
* Style - Code Templates
*/
package com.hongsoft.agile.pojo;
import java.io.Serializable;
/**
* @author hongsoft.com TODO To change the template for this generated type comment go to Window - Preferences - Java -
* Code Style - Code Templates
*/
public class DriveType implements Serializable {
private static final long serialVersionUID = 4459589869303152768L;
private String fromActivityInsId;
private String nextActivityDefId;
/**
* @return Returns the nextActivityId.
*/
public String getNextActivityDefId() {
return nextActivityDefId;
}
/**
* @param nextActivityId The nextActivityId to set.
*/
public void setNextActivityDefId(String nextActivityId) {
this.nextActivityDefId = nextActivityId;
}
public boolean equals(Object other) {
if (other == null || !(other instanceof DriveType))
return false;
return (this.nextActivityDefId == ((DriveType) other).nextActivityDefId)
&& (this.fromActivityInsId == ((DriveType) other).fromActivityInsId) && true;
}
/**
* @return Returns the fromActivityId.
*/
public String getFromActivityInsId() {
return fromActivityInsId;
}
/**
* @param fromActivityId The fromActivityId to set.
*/
public void setFromActivityInsId(String fromActivityId) {
this.fromActivityInsId = fromActivityId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -