first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
package wenrgise.workflow.bean;
import java.io.Serializable;
import wenrgise.common.bean.BaseDetailBean;
public class WflDocMstAttrDtlBean extends BaseDetailBean implements Serializable {
private String txtAttrName;
private String txtType;
private String txtDesc;
private String docTypeHdrId;
public String txtLovKey;
public String getTxtAttrName() {
return this.txtAttrName;
}
public void setTxtAttrName(String newTxtAttrName) {
this.txtAttrName = newTxtAttrName;
}
public String getTxtType() {
return this.txtType;
}
public void setTxtType(String newTxtType) {
this.txtType = newTxtType;
}
public String getTxtDesc() {
return this.txtDesc;
}
public void setTxtDesc(String newTxtDesc) {
this.txtDesc = newTxtDesc;
}
public String getDocTypeHdrId() {
return this.docTypeHdrId;
}
public void setDocTypeHdrId(String newDocTypeHdrId) {
this.docTypeHdrId = newDocTypeHdrId;
}
public String getTxtLovKey() {
return this.txtLovKey;
}
public void setTxtLovKey(String newTxtLovKey) {
this.txtLovKey = newTxtLovKey;
}
}