package com.ycl.dto.dispatch;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel("UploadDisposingResultParam")
|
public class UploadDisposingResultParam {
|
|
@ApiModelProperty(value = "案件id")
|
private Long caseId;
|
//承办队员
|
|
@ApiModelProperty(value = "调查取证id")
|
private Long investigationId;
|
|
@ApiModelProperty(value = "到达现场id")
|
private Long arrivalSituationId;
|
|
@ApiModelProperty(value = "当事人id")
|
private Long partyInfoId;
|
|
@ApiModelProperty(value = "文书id")
|
private Long writId;
|
|
@ApiModelProperty(value = "图片id")
|
private Integer imageResourcesId;
|
/**
|
* 承办队员
|
*/
|
@ApiModelProperty(value = "承办队员")
|
private String undertaker;
|
|
/**
|
* 协办队员
|
*/
|
@ApiModelProperty(value = "协办队员")
|
private String assistant;
|
|
/**
|
* 时间
|
*/
|
@ApiModelProperty(value = "时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private String investigationTime;
|
|
/**
|
* 地址
|
*/
|
@ApiModelProperty(value = "地址")
|
private String address;
|
|
/**
|
* 案由
|
*/
|
@ApiModelProperty(value = "案由")
|
private String caseAction;
|
|
// /**
|
// * 当事人id
|
// */
|
// @ApiModelProperty(value = "当事人id")
|
// private Integer partyId;
|
|
/**
|
* 情况描述
|
*/
|
@ApiModelProperty(value = "情况描述")
|
private String description;
|
|
/**
|
* 照片
|
*/
|
@ApiModelProperty(value = "照片")
|
private String pic;
|
|
//现场
|
|
/**
|
* 到达时间
|
*/
|
@ApiModelProperty(value = "到达时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private String arrivalTime;
|
|
/**
|
* 到达地址
|
*/
|
@ApiModelProperty(value = "到达地址")
|
private String arrivalAddress;
|
|
/**
|
* 现场情况说明
|
*/
|
@ApiModelProperty(value = "现场情况说明")
|
private String situationExplain;
|
|
/**
|
* 信访回复说明
|
*/
|
@ApiModelProperty(value = "信访回复说明")
|
private String replyExplain;
|
|
/**
|
* 现场情况照片
|
*/
|
@ApiModelProperty(value = "现场情况照片")
|
private String situationPic;
|
|
//文书
|
/**
|
* 文书种类
|
*/
|
@ApiModelProperty(value = "文书种类")
|
private Integer writType;
|
|
/**
|
* 文书编号
|
*/
|
@ApiModelProperty(value = "文书编号")
|
private String writCode;
|
|
/**
|
* 违法类型
|
*/
|
@ApiModelProperty(value = "违法类型")
|
private Integer illegalType;
|
|
/**
|
* 文书发放时间
|
*/
|
@ApiModelProperty(value = "文书发放时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private String sendTime;
|
|
/**
|
* 文书限定时间
|
*/
|
@ApiModelProperty(value = "文书限定时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private String limitTime;
|
|
/**
|
* 文书发放内容
|
*/
|
@ApiModelProperty(value = "文书发放内容")
|
private String sendContent;
|
|
/**
|
* 实际整改时间
|
*/
|
@ApiModelProperty(value = "实际整改时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private String rectifyTime;
|
|
/**
|
* 整改情况
|
*/
|
@ApiModelProperty(value = "整改情况")
|
private String rectifySituation;
|
|
/**
|
* 备注
|
*/
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
|
/**
|
* 文书照片上传
|
*/
|
@ApiModelProperty(value = "文书照片上传")
|
private String writPic;
|
|
/**
|
* 整改前照片
|
*/
|
@ApiModelProperty(value = "整改前照片")
|
private String originalPic;
|
|
/**
|
* 整改后照片
|
*/
|
@ApiModelProperty(value = "整改后照片")
|
private String rectifiedPic;
|
|
/**
|
* 其他照片
|
*/
|
@ApiModelProperty(value = "其他照片")
|
private String otherPic;
|
|
/**
|
* 文书模板值
|
*/
|
@ApiModelProperty(value = "文书模板值")
|
private String value;
|
|
//当事人
|
|
/**
|
* 姓名
|
*/
|
@ApiModelProperty(value = "姓名")
|
private String name;
|
|
/**
|
* 手机号
|
*/
|
@ApiModelProperty(value = "手机号")
|
private String phoneCode;
|
|
/**
|
* 证件类型
|
*/
|
@ApiModelProperty(value = "证件类型")
|
private Integer certificateType;
|
|
/**
|
* 证件号
|
*/
|
@ApiModelProperty(value = "证件号")
|
private String certificateCode;
|
|
/**
|
* 文化程度
|
*/
|
@ApiModelProperty(value = "文化程度")
|
private Integer educationDegree;
|
|
/**
|
* 职业
|
*/
|
@ApiModelProperty(value = "职业")
|
private String career;
|
|
/**
|
* 工作单位及职务
|
*/
|
@ApiModelProperty(value = "工作单位及职务")
|
private String work;
|
|
/**
|
* 民族
|
*/
|
@ApiModelProperty(value = "民族")
|
private Integer nation;
|
|
/**
|
* 籍贯
|
*/
|
@ApiModelProperty(value = "籍贯")
|
private String nativePlace;
|
|
/**
|
* 现住地址
|
*/
|
@ApiModelProperty(value = "现住地址")
|
private String liveAddress;
|
|
/**
|
* 户籍所在地
|
*/
|
@ApiModelProperty(value = "户籍所在地")
|
private String registerAddress;
|
|
}
|