package com.gk.firework.Domain.Vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.gk.firework.Domain.Enum.AssessAppealStatus;
|
import com.gk.firework.Domain.Enum.AssessPunishment;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class AssessApplyAppealVo implements Serializable {
|
|
private Long id;
|
private String code;
|
private String enterprisename;
|
private AssessPunishment punishmentmeasure;
|
//自己申诉的材料
|
private String path2;
|
//协会提交的材料
|
private String path1;
|
private String punishmentreason;
|
private boolean ispunish;
|
private Date approvetime;
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd")
|
private Date deadline;
|
private String approvenote;
|
private boolean whetherCanAppeal;
|
private String appealcontent;
|
private AssessAppealStatus appealstatus;
|
private String appealapprover;
|
private Date appealapprovetime;
|
//7天内截止的单子是否需要提示
|
private boolean iswarn;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getEnterprisename() {
|
return enterprisename;
|
}
|
|
public void setEnterprisename(String enterprisename) {
|
this.enterprisename = enterprisename;
|
}
|
|
public AssessPunishment getPunishmentmeasure() {
|
return punishmentmeasure;
|
}
|
|
public void setPunishmentmeasure(AssessPunishment punishmentmeasure) {
|
this.punishmentmeasure = punishmentmeasure;
|
}
|
|
public String getPath2() {
|
return path2;
|
}
|
|
public void setPath2(String path2) {
|
this.path2 = path2;
|
}
|
|
public boolean isIspunish() {
|
return ispunish;
|
}
|
|
public void setIspunish(boolean ispunish) {
|
this.ispunish = ispunish;
|
}
|
|
public Date getApprovetime() {
|
return approvetime;
|
}
|
|
public void setApprovetime(Date approvetime) {
|
this.approvetime = approvetime;
|
}
|
|
public Date getDeadline() {
|
return deadline;
|
}
|
|
public void setDeadline(Date deadline) {
|
this.deadline = deadline;
|
}
|
|
public String getApprovenote() {
|
return approvenote;
|
}
|
|
public void setApprovenote(String approvenote) {
|
this.approvenote = approvenote;
|
}
|
|
public String getPunishmentreason() {
|
return punishmentreason;
|
}
|
|
public void setPunishmentreason(String punishmentreason) {
|
this.punishmentreason = punishmentreason;
|
}
|
|
public boolean isWhetherCanAppeal() {
|
return whetherCanAppeal;
|
}
|
|
public void setWhetherCanAppeal(boolean whetherCanAppeal) {
|
this.whetherCanAppeal = whetherCanAppeal;
|
}
|
|
public String getAppealcontent() {
|
return appealcontent;
|
}
|
|
public void setAppealcontent(String appealcontent) {
|
this.appealcontent = appealcontent;
|
}
|
|
public AssessAppealStatus getAppealstatus() {
|
return appealstatus;
|
}
|
|
public void setAppealstatus(AssessAppealStatus appealstatus) {
|
this.appealstatus = appealstatus;
|
}
|
|
public String getAppealapprover() {
|
return appealapprover;
|
}
|
|
public void setAppealapprover(String appealapprover) {
|
this.appealapprover = appealapprover;
|
}
|
|
public Date getAppealapprovetime() {
|
return appealapprovetime;
|
}
|
|
public void setAppealapprovetime(Date appealapprovetime) {
|
this.appealapprovetime = appealapprovetime;
|
}
|
|
public String getPath1() {
|
return path1;
|
}
|
|
public void setPath1(String path1) {
|
this.path1 = path1;
|
}
|
|
public boolean isIswarn() {
|
return iswarn;
|
}
|
|
public void setIswarn(boolean iswarn) {
|
this.iswarn = iswarn;
|
}
|
}
|