|
|
|
|
@ -6,6 +6,7 @@ import com.biutag.supervision.pojo.entity.NegativeScorePolice;
|
|
|
|
|
import com.biutag.supervision.pojo.entity.NegativeThingFile; |
|
|
|
|
import com.biutag.supervision.pojo.vo.NegativeFileVo; |
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
|
import lombok.Getter; |
|
|
|
|
import lombok.Setter; |
|
|
|
|
|
|
|
|
|
@ -264,4 +265,33 @@ public class NegativeVo {
|
|
|
|
|
// 经办人
|
|
|
|
|
private List<VerifyData.HandlePolice> handlePolices = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @see com.biutag.supervision.pojo.enums.negative.NegativeSourceTypeEnum |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "来源类型") |
|
|
|
|
private String sourceType; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @see com.biutag.supervision.pojo.enums.negative.NegativeSourceTypeEnum |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "来源类型名称") |
|
|
|
|
private String sourceTypeDesc; |
|
|
|
|
|
|
|
|
|
@Schema(description = "下发单位id") |
|
|
|
|
private String issuingDepartId; |
|
|
|
|
|
|
|
|
|
@Schema(description = "下发单位名字") |
|
|
|
|
private String issuingDepartName; |
|
|
|
|
|
|
|
|
|
@Schema(description = "最后一次审批节点操作时间") |
|
|
|
|
private LocalDateTime latestProcessTime; |
|
|
|
|
|
|
|
|
|
@Schema(description = "2级审批累计时长(秒)") |
|
|
|
|
private Long secondApprovalTime; |
|
|
|
|
|
|
|
|
|
@Schema(description = "市局审批累计时长(秒)") |
|
|
|
|
private Long firstApproveTime; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|