package com.nationalelectric.greenH5.po; import java.io.Serializable; import java.util.Date; /** * * 申请记录 * @author Feb * */ public class GreenApply implements Serializable{ private static final long serialVersionUID = 1L; private long id; private String userId; // 申请人id private long detailId; // 事项申请详情 id // 申请类型 private String applyType; private String applyTypeName; // 申请类型名称 private String applyDesc; // 申请描述 private Date applyTime; // 申请时间 private Date updTime; // 修改时间 private String needVerifyLevel; // 需要审批等级 (0 不需审批) private String curVerifyLevel; // 当前审批等级 // 审批状态 // "0" 待审批 "1" 已同意 "2" 已拒绝 "3" 已取消 "4" 待制卡 "5" 制卡完成 "6" 待授权 // "7" 已授权 "8" 预约成功 "9" 已完成 "10" 待接受 "11" 已接受 "12" 领取成功 "13" 进行中 private String status; private String refuseLevel; // 拒绝等级 private String info1; // 详情 1 private String info2; // 详情 2 private String info3; // 详情 3 private String info4; // 详情 4 private String delFlag; // 逻辑删除 0 未删除 1 已删除 private String commentStatus; //评价状态 0 未评价 1 已评价 public long getId() { return id; } public String getUserId() { return userId; } public long getDetailId() { return detailId; } public String getApplyType() { return applyType; } public String getApplyTypeName() { return applyTypeName; } public String getApplyDesc() { return applyDesc; } public void setId(long id) { this.id = id; } public void setUserId(String userId) { this.userId = userId; } public void setDetailId(long detailId) { this.detailId = detailId; } public void setApplyType(String applyType) { this.applyType = applyType; } public void setApplyTypeName(String applyTypeName) { this.applyTypeName = applyTypeName; } public void setApplyDesc(String applyDesc) { this.applyDesc = applyDesc; } public String getNeedVerifyLevel() { return needVerifyLevel; } public void setNeedVerifyLevel(String needVerifyLevel) { this.needVerifyLevel = needVerifyLevel; } public String getCurVerifyLevel() { return curVerifyLevel; } public void setCurVerifyLevel(String curVerifyLevel) { this.curVerifyLevel = curVerifyLevel; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getRefuseLevel() { return refuseLevel; } public void setRefuseLevel(String refuseLevel) { this.refuseLevel = refuseLevel; } public String getDelFlag() { return delFlag; } public void setDelFlag(String delFlag) { this.delFlag = delFlag; } public Date getApplyTime() { return applyTime; } public void setApplyTime(Date applyTime) { this.applyTime = applyTime; } public Date getUpdTime() { return updTime; } public void setUpdTime(Date updTime) { this.updTime = updTime; } public String getInfo1() { return info1; } public String getInfo2() { return info2; } public String getInfo3() { return info3; } public String getInfo4() { return info4; } public void setInfo1(String info1) { this.info1 = info1; } public void setInfo2(String info2) { this.info2 = info2; } public void setInfo3(String info3) { this.info3 = info3; } public void setInfo4(String info4) { this.info4 = info4; } public String getCommentStatus() { return commentStatus; } public void setCommentStatus(String commentStatus) { this.commentStatus = commentStatus; } @Override public String toString() { return "GreenApply [id=" + id + ", userId=" + userId + ", detailId=" + detailId + ", applyType=" + applyType + ", applyTypeName=" + applyTypeName + ", applyDesc=" + applyDesc + ", applyTime=" + applyTime + ", updTime=" + updTime + ", needVerifyLevel=" + needVerifyLevel + ", curVerifyLevel=" + curVerifyLevel + ", status=" + status + ", refuseLevel=" + refuseLevel + ", info1=" + info1 + ", info2=" + info2 + ", info3=" + info3 + ", info4=" + info4 + ", delFlag=" + delFlag + ", commentStatus=" + commentStatus + "]"; } }