first commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package WEB-INF.classes.wenrgise.workflow.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
import wenrgise.common.bean.BaseDetailBean;
|
||||
|
||||
public class WflDocMstConditionsDtlBean extends BaseDetailBean implements Serializable {
|
||||
private String docTypeDtlDesc;
|
||||
|
||||
private String conditionExpression;
|
||||
|
||||
public String getDocTypeDtlDesc() {
|
||||
return this.docTypeDtlDesc;
|
||||
}
|
||||
|
||||
public void setDocTypeDtlDesc(String newDocTypeDtlDesc) {
|
||||
this.docTypeDtlDesc = newDocTypeDtlDesc;
|
||||
}
|
||||
|
||||
public String getConditionExpression() {
|
||||
return this.conditionExpression;
|
||||
}
|
||||
|
||||
public void setConditionExpression(String newConditionExpression) {
|
||||
this.conditionExpression = newConditionExpression;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user