18 changed files with 410 additions and 126 deletions
@ -0,0 +1,44 @@
|
||||
package com.biutag.supervision.pojo.param; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
@Getter |
||||
@Setter |
||||
public class TaskRiskPersonalQueryParam extends BasePage{ |
||||
|
||||
private String id; |
||||
// 姓名
|
||||
private String name; |
||||
|
||||
// 性别男1女2
|
||||
private String gender; |
||||
// 证件号码
|
||||
private String idCode; |
||||
|
||||
|
||||
// 手机号
|
||||
private String mobile; |
||||
|
||||
// 人员类别
|
||||
private String personalType; |
||||
|
||||
// 管控级别
|
||||
private String controlLevel; |
||||
// 管控间隔
|
||||
private String controlTimeInterval; |
||||
|
||||
// 责任单位名称
|
||||
private String responsibleDepartName; |
||||
|
||||
// 责任民警姓名
|
||||
private String responsibleName; |
||||
|
||||
//责任民警警号
|
||||
private String responsibleEmpNo; |
||||
//责任单位Id
|
||||
private String responsibleDepartId; |
||||
|
||||
private String supStatus; |
||||
} |
||||
@ -0,0 +1,66 @@
|
||||
package com.biutag.supervision.pojo.param; |
||||
|
||||
import com.biutag.supervision.pojo.vo.FileVo; |
||||
import com.biutag.supervision.pojo.vo.TaskInspectionProblemVo; |
||||
import com.biutag.supervision.pojo.vo.TaskTestingAlcoholPeopleVo; |
||||
import jakarta.validation.constraints.NotBlank; |
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
@Getter |
||||
@Setter |
||||
public class TaskTestingTaskDistribute { |
||||
|
||||
private String id; |
||||
|
||||
//禁酒督察人员
|
||||
// private TaskTestingAlcoholPeopleVo peopleVos;
|
||||
//问题
|
||||
private TaskInspectionProblemVo problemVo; |
||||
|
||||
private String taskName; |
||||
|
||||
// 办理时限
|
||||
@NotBlank |
||||
private String timeLimit; |
||||
|
||||
// 最大签收时长(天)
|
||||
private Integer maxSignDuration; |
||||
|
||||
// 最大办理时长(天)
|
||||
private Integer maxHandleDuration; |
||||
|
||||
// 最大延期时长(天)
|
||||
private Integer maxExtensionDuration; |
||||
|
||||
// 下发流程
|
||||
private String distributionFlow; |
||||
|
||||
// 审批流程
|
||||
@NotBlank |
||||
private String approvalFlow; |
||||
|
||||
// 通知单位
|
||||
private String handleDepartType; |
||||
|
||||
private String handleDepartId; |
||||
|
||||
// 业务类型
|
||||
private String businessTypeCode; |
||||
|
||||
// 警种
|
||||
private String policeType; |
||||
|
||||
private String policeTypeName; |
||||
|
||||
private List<String> involveProblem ; |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
private List<FileVo> thingFiles = new ArrayList<>(); |
||||
} |
||||
Loading…
Reference in new issue