ZQN
2025-03-25 1618b864a7db55e541fa5b73022f305aae4cf1e1
project-enforce/src/main/java/com/project/enforce/domain/vo/EnforceOrderVo.java
@@ -2,6 +2,7 @@
import com.fasterxml.jackson.annotation.JsonFormat;
import com.project.common.annotation.Excel;
import com.project.common.annotation.Sensitive;
import com.project.enforce.domain.EnforcePeer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@@ -29,27 +30,42 @@
   @Excel(name = "单据编号")
   @ApiModelProperty("单据编号")
   private String orderNo;
   @Excel(name = "企业id")
   @ApiModelProperty("企业id")
   private Long companyId;
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   @Excel(name = "企业名")
   @ApiModelProperty("企业名")
   private String companyName;
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   @Excel(name = "企业社会编码")
   @ApiModelProperty("企业社会编码")
   private String companyCode;
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   @Excel(name = "企业联系人")
   @ApiModelProperty("企业联系人")
   private String companyUser;
   @Sensitive(type = Sensitive.SensitiveType.PHONE)
   @Excel(name = "企业联系人电话" , readConverterExp = "账=号")
   @ApiModelProperty("企业联系人电话(账号)")
   private String companyPhone;
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   @Excel(name = "企业地址")
   @ApiModelProperty("企业地址")
   private String companyAddress;
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   @Excel(name = "所属区域编码")
   @ApiModelProperty("所属区域编码")
   private String regionCode;
   @Excel(name = "所属区域")
   @ApiModelProperty("所属区域")
   private String regionName;
@@ -67,18 +83,28 @@
   @Excel(name = "申请人id")
   @ApiModelProperty("申请人id")
   private Long applyId;
   @Excel(name = "申请人")
   @ApiModelProperty("申请人")
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   private String applyUser;
   @Sensitive(type = Sensitive.SensitiveType.PHONE)
   @Excel(name = "申请人电话")
   @ApiModelProperty("申请人电话")
   private String applyPhone;
   @Excel(name = "申请人单位")
   @ApiModelProperty("申请人单位")
   private Long applyDeptId;
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   @Excel(name = "申请人单位")
   @ApiModelProperty("申请人单位")
   private String applyDeptName;
   @Excel(name = "申请时间" , width = 30, dateFormat = "yyyy-MM-dd")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @ApiModelProperty("申请时间")
@@ -101,6 +127,7 @@
   @Excel(name = "执法队员人数")
   @ApiModelProperty("执法队员人数")
   private Integer userNum;
   @Excel(name = "预警状态:0正常,1预警")
   @ApiModelProperty("预警状态:0正常,1预警")
   private Integer warnStatus;
@@ -115,6 +142,7 @@
   private Long checkDeptId;
   @Excel(name = "审批人单位")
   @ApiModelProperty("审批人单位")
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   private String checkDeptName;
   @Excel(name = "订单状态:-1拒绝,0待审批,1审批中,2通过")
   @ApiModelProperty("订单状态:-1拒绝,0待审批,1审批中,2通过")
@@ -132,17 +160,23 @@
   @Excel(name = "执行人id")
   @ApiModelProperty("执行人id")
   private Long executeId;
   @Excel(name = "执行人")
   @ApiModelProperty("执行人")
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   private String executeUser;
   @Excel(name = "执行人电话")
   @ApiModelProperty("执行人电话")
   @Sensitive(type = Sensitive.SensitiveType.PHONE)
   private String executePhone;
   @Excel(name = "执行人单位")
   @ApiModelProperty("执行人单位")
   private Long executeDeptId;
   @Excel(name = "执行人单位")
   @ApiModelProperty("执行人单位")
   @Sensitive(type = Sensitive.SensitiveType.DEFAULT)
   private String executeDeptName;
   @Excel(name = "执行时间" , width = 30, dateFormat = "yyyy-MM-dd")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")