6 changed files with 680 additions and 5 deletions
@ -0,0 +1,40 @@ |
|||||||
|
package com.biutag.outer.domain; |
||||||
|
|
||||||
|
import com.alibaba.fastjson2.annotation.JSONField; |
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.time.LocalDateTime; |
||||||
|
|
||||||
|
@TableName("mail_12345_log") |
||||||
|
@AllArgsConstructor |
||||||
|
@Data |
||||||
|
public class Mail12345Log { |
||||||
|
|
||||||
|
@TableId(value = "id", type = IdType.AUTO) |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 状态:0-失败,1-成功 |
||||||
|
*/ |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
/** |
||||||
|
* 上传数量 |
||||||
|
*/ |
||||||
|
private Integer num; |
||||||
|
|
||||||
|
/** |
||||||
|
* 详情 |
||||||
|
*/ |
||||||
|
private String details; |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss") |
||||||
|
private LocalDateTime createTime; |
||||||
|
} |
||||||
@ -0,0 +1,408 @@ |
|||||||
|
package com.biutag.outer.domain; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
|
||||||
|
import java.time.LocalDateTime; |
||||||
|
|
||||||
|
@Accessors(chain = true) |
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class MailReceive { |
||||||
|
|
||||||
|
@TableId |
||||||
|
private String id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 联系人姓名 |
||||||
|
*/ |
||||||
|
private String contactName; |
||||||
|
/** |
||||||
|
* 联系人性别 M / F |
||||||
|
*/ |
||||||
|
private String contactSex; |
||||||
|
/** |
||||||
|
* 联系人身份证号码 |
||||||
|
*/ |
||||||
|
private String contactIdCard; |
||||||
|
/** |
||||||
|
* 联系人手机号 |
||||||
|
*/ |
||||||
|
private String contactPhone; |
||||||
|
/** |
||||||
|
* 案件编号 |
||||||
|
*/ |
||||||
|
private String caseNumber; |
||||||
|
/** |
||||||
|
* 内容 |
||||||
|
*/ |
||||||
|
private String content; |
||||||
|
/** |
||||||
|
* 附件 |
||||||
|
*/ |
||||||
|
private String attachments; |
||||||
|
/** |
||||||
|
* 创建时间 |
||||||
|
*/ |
||||||
|
private LocalDateTime createTime; |
||||||
|
/** |
||||||
|
* 更新时间 |
||||||
|
*/ |
||||||
|
private LocalDateTime updateTime; |
||||||
|
/** |
||||||
|
* 来信时间 |
||||||
|
*/ |
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||||
|
private LocalDateTime mailTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 来源 |
||||||
|
*/ |
||||||
|
private String source; |
||||||
|
|
||||||
|
/** |
||||||
|
* 满意读(网络) |
||||||
|
*/ |
||||||
|
private String satisfaction; |
||||||
|
|
||||||
|
/** |
||||||
|
* 满意读(短信) |
||||||
|
*/ |
||||||
|
private String satisfactionSms; |
||||||
|
|
||||||
|
/*-------------------------------*/ |
||||||
|
|
||||||
|
/** |
||||||
|
* 信件状态 |
||||||
|
*/ |
||||||
|
private String mailState; |
||||||
|
/** |
||||||
|
* 信件当前流程 |
||||||
|
*/ |
||||||
|
private String flowKey; |
||||||
|
/** |
||||||
|
* 信件当前流程节点 |
||||||
|
*/ |
||||||
|
private String flowBeforeName; |
||||||
|
|
||||||
|
private String flowName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 流程限时最后操作时间 |
||||||
|
*/ |
||||||
|
private LocalDateTime flowLimitedLastHandlerTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 信件源数据ID (多个) |
||||||
|
*/ |
||||||
|
private String mailSourceId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 信件类名 |
||||||
|
*/ |
||||||
|
private String mailCategory; |
||||||
|
/** |
||||||
|
* 信件一级类目 |
||||||
|
*/ |
||||||
|
private String mailFirstCategory; |
||||||
|
/** |
||||||
|
* 信件二级类目 |
||||||
|
*/ |
||||||
|
private String mailSecondCategory; |
||||||
|
/** |
||||||
|
* 信件三级类目 |
||||||
|
*/ |
||||||
|
private String mailThreeCategory; |
||||||
|
/** |
||||||
|
* 信件等级 |
||||||
|
*/ |
||||||
|
private String mailLevel; |
||||||
|
|
||||||
|
/** |
||||||
|
* 二级单位ID(主责) |
||||||
|
*/ |
||||||
|
private Integer secondDeptId; |
||||||
|
|
||||||
|
private String secondDeptName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 三级单位ID(主责) |
||||||
|
*/ |
||||||
|
private Integer threeDeptId; |
||||||
|
|
||||||
|
private String threeDeptName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 协办核查民警(String) |
||||||
|
*/ |
||||||
|
private String coHandlingPolices; |
||||||
|
/** |
||||||
|
* 联系民警名称 |
||||||
|
*/ |
||||||
|
private String contactPoliceName; |
||||||
|
/** |
||||||
|
* 联系民警 |
||||||
|
*/ |
||||||
|
private String contactPoliceEmpNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 联系民警职位 |
||||||
|
*/ |
||||||
|
private String contactPolicePost; |
||||||
|
|
||||||
|
/** |
||||||
|
* 联系群众时间 |
||||||
|
*/ |
||||||
|
private LocalDateTime contactTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 联系时长(秒) |
||||||
|
*/ |
||||||
|
private Long contactDuration; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否联系群众 |
||||||
|
*/ |
||||||
|
private Boolean contactFlag; |
||||||
|
|
||||||
|
/** |
||||||
|
* 接访形式 |
||||||
|
*/ |
||||||
|
private String interviewType; |
||||||
|
/** |
||||||
|
* 是否接访一把手 |
||||||
|
*/ |
||||||
|
private Boolean interviewIsLeader; |
||||||
|
/** |
||||||
|
* 接访人员警号 |
||||||
|
*/ |
||||||
|
private String interviewPoliceEmpNo; |
||||||
|
/** |
||||||
|
* 接访人员姓名 |
||||||
|
*/ |
||||||
|
private String interviewPoliceName; |
||||||
|
/** |
||||||
|
* 接访情况 |
||||||
|
*/ |
||||||
|
private String interviewDetails; |
||||||
|
/** |
||||||
|
* 接访附件(佐证材料) |
||||||
|
*/ |
||||||
|
private String interviewAttachments; |
||||||
|
/** |
||||||
|
* 核办情况 |
||||||
|
*/ |
||||||
|
private String verifyDetails; |
||||||
|
/** |
||||||
|
* 核办-是否属实 |
||||||
|
*/ |
||||||
|
private String verifyIsTrue; |
||||||
|
/** |
||||||
|
* 核办-被举报对象(json) |
||||||
|
*/ |
||||||
|
private String verifyReportedPolices; |
||||||
|
/** |
||||||
|
* 核办-查证属实问题(json) |
||||||
|
*/ |
||||||
|
private String verifyProblem; |
||||||
|
/** |
||||||
|
* 核办-是否需要问责 |
||||||
|
*/ |
||||||
|
private Boolean verifyNeedAccountability; |
||||||
|
/** |
||||||
|
* 核办-责任追究(json) |
||||||
|
*/ |
||||||
|
private String verifyPunish; |
||||||
|
|
||||||
|
/** |
||||||
|
* 核办-群众反映事项解决情况(是否已解决) |
||||||
|
*/ |
||||||
|
private Boolean verifyIsResolved; |
||||||
|
|
||||||
|
/** |
||||||
|
* 核办-办理反馈情况 |
||||||
|
*/ |
||||||
|
private String verifyFeedback; |
||||||
|
|
||||||
|
/** |
||||||
|
* 核办-回访人信息(String) |
||||||
|
*/ |
||||||
|
private String verifyFollowupPolice; |
||||||
|
|
||||||
|
/** |
||||||
|
* 核办-附件(上传佐证) |
||||||
|
*/ |
||||||
|
private String verifyAttachments; |
||||||
|
|
||||||
|
/** |
||||||
|
* 办结方式 |
||||||
|
*/ |
||||||
|
private String completeMethod; |
||||||
|
|
||||||
|
/** |
||||||
|
* 办理合格情况 |
||||||
|
*/ |
||||||
|
private String qualifiedProcessingStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* 问题解决情况 |
||||||
|
*/ |
||||||
|
private Boolean problemSolvingStatus; |
||||||
|
|
||||||
|
/** |
||||||
|
* 群众回复情况 |
||||||
|
*/ |
||||||
|
private String satisfactionStatus; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 认定办结意见 |
||||||
|
*/ |
||||||
|
private String completionComment; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否是简易流程 |
||||||
|
*/ |
||||||
|
private Boolean simpleFlowFlag; |
||||||
|
|
||||||
|
/** |
||||||
|
* 涉及单位ID |
||||||
|
*/ |
||||||
|
private Integer involvedDeptId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 涉及单位名称 |
||||||
|
*/ |
||||||
|
private String involvedDeptName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 会签部门总数 |
||||||
|
*/ |
||||||
|
private Integer countersignTotal; |
||||||
|
|
||||||
|
/** |
||||||
|
* 会签完成部门数量 |
||||||
|
*/ |
||||||
|
private Integer countersignCompleted; |
||||||
|
|
||||||
|
/** |
||||||
|
* 会签发起人 |
||||||
|
*/ |
||||||
|
private String countersignPromoterEmpNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 会签发起姓名 |
||||||
|
*/ |
||||||
|
private String countersignPromoterName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 会签发起部门ID |
||||||
|
*/ |
||||||
|
private Integer countersignPromoterDeptId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 会签发起部门名称 |
||||||
|
*/ |
||||||
|
private String countersignPromoterDeptName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 会签具体要求 |
||||||
|
*/ |
||||||
|
private String countersignRequirement; |
||||||
|
|
||||||
|
/** |
||||||
|
* 信件标签 |
||||||
|
*/ |
||||||
|
private String mailLabels; |
||||||
|
|
||||||
|
/** |
||||||
|
* 当前操作对象 |
||||||
|
*/ |
||||||
|
private String currentOperator; |
||||||
|
|
||||||
|
/** |
||||||
|
* 申请延期ID |
||||||
|
*/ |
||||||
|
private String extensionRequestId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否申请延期 |
||||||
|
*/ |
||||||
|
private Boolean extensionFlag; |
||||||
|
|
||||||
|
/** |
||||||
|
* 延期天数 |
||||||
|
*/ |
||||||
|
private Integer extensionDays; |
||||||
|
|
||||||
|
/** |
||||||
|
* 延期理由 |
||||||
|
*/ |
||||||
|
private String extensionReason; |
||||||
|
|
||||||
|
/** |
||||||
|
* 延期状态 |
||||||
|
*/ |
||||||
|
private String extensionState; |
||||||
|
|
||||||
|
/** |
||||||
|
* 无效判定理由 |
||||||
|
*/ |
||||||
|
private String invalidationReason; |
||||||
|
|
||||||
|
/** |
||||||
|
* 市局下发信息 |
||||||
|
*/ |
||||||
|
private String firstDistributeInfo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 二级单位下发信息 |
||||||
|
*/ |
||||||
|
private String secondDistributeInfo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 主办层级 |
||||||
|
*/ |
||||||
|
private Integer mainDeptLevel; |
||||||
|
|
||||||
|
/** |
||||||
|
* 信件后续审批流程 |
||||||
|
*/ |
||||||
|
private String returnOperate; |
||||||
|
|
||||||
|
/** |
||||||
|
* 不满意原因 |
||||||
|
*/ |
||||||
|
private String notSatisfiedReason; |
||||||
|
|
||||||
|
/** |
||||||
|
* 市局专班下发时间 |
||||||
|
*/ |
||||||
|
private LocalDateTime firstDistributeTime; |
||||||
|
|
||||||
|
/** |
||||||
|
* 市局下发意见 |
||||||
|
*/ |
||||||
|
private String firstDistributeComment; |
||||||
|
|
||||||
|
/** |
||||||
|
* 市局下发意见 |
||||||
|
*/ |
||||||
|
private String firstDistributeFiles; |
||||||
|
|
||||||
|
/** |
||||||
|
* 二级机构下发意见 |
||||||
|
*/ |
||||||
|
private String secondDistributeComment; |
||||||
|
|
||||||
|
private String secondDistributeFiles; |
||||||
|
|
||||||
|
/** |
||||||
|
* 二级机构下发时间 |
||||||
|
*/ |
||||||
|
private LocalDateTime secondDistributeTime; |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
package com.biutag.outer.domain; |
||||||
|
|
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Accessors(chain = true) |
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class MailSend { |
||||||
|
private String system = "信箱服务"; |
||||||
|
|
||||||
|
private String token = "e77a2b8af95df699c2df3afebca80c15"; |
||||||
|
|
||||||
|
private String dataType = "2"; |
||||||
|
|
||||||
|
private List<MailSendParam> paramterList; |
||||||
|
} |
||||||
@ -0,0 +1,128 @@ |
|||||||
|
package com.biutag.outer.domain; |
||||||
|
|
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
import lombok.experimental.Accessors; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
@Accessors(chain = true) |
||||||
|
@Setter |
||||||
|
@Getter |
||||||
|
public class MailSendParam { |
||||||
|
private String LOCATION = null; |
||||||
|
|
||||||
|
private int CASESOURCE = 3; |
||||||
|
|
||||||
|
private String SOURCEID = "189"; |
||||||
|
|
||||||
|
private String SOURCENAME = "市公安局"; |
||||||
|
|
||||||
|
private int AREPUBLIC = 1; |
||||||
|
|
||||||
|
private String ATTACHLIST = null; |
||||||
|
|
||||||
|
// 联系人电话
|
||||||
|
private String PHONE; |
||||||
|
|
||||||
|
private int SEX = 1; |
||||||
|
|
||||||
|
private String CRIP = null; |
||||||
|
|
||||||
|
private int THUMBSTATUS = 0; |
||||||
|
|
||||||
|
// 发布时间
|
||||||
|
private String PUBLICTIME; |
||||||
|
|
||||||
|
// 提交时间
|
||||||
|
private String SUBMITTIME; |
||||||
|
|
||||||
|
// 处理部门名
|
||||||
|
private String DEALDEPTNAME; |
||||||
|
|
||||||
|
private String EMAIL = null; |
||||||
|
|
||||||
|
private int ISMAGORMSG = 1; |
||||||
|
|
||||||
|
private int ISDEADLINE = 0; |
||||||
|
|
||||||
|
private int ISANONYMOUS = 0; |
||||||
|
|
||||||
|
private String HTMLCONTENT = null; |
||||||
|
|
||||||
|
private int OTHERTAG = 0; |
||||||
|
|
||||||
|
private int STATUS = 7; |
||||||
|
|
||||||
|
private String AREA = null; |
||||||
|
|
||||||
|
private int ISBACK = 0; |
||||||
|
|
||||||
|
private List<Reply> REPLYS; |
||||||
|
|
||||||
|
private String RECOMMENDTAG = null; |
||||||
|
|
||||||
|
private int ISSUPERVISEFLAG = 1; |
||||||
|
|
||||||
|
// 姓名或者昵称
|
||||||
|
private String USERNAME; |
||||||
|
|
||||||
|
// 信件内容
|
||||||
|
private String CONTENT; |
||||||
|
|
||||||
|
// 信件分类类型
|
||||||
|
private String GOVMSGBOXTYPE1; |
||||||
|
|
||||||
|
private int GOVMSGBOXFLAG = 0; |
||||||
|
|
||||||
|
private String ATTACHS = null; |
||||||
|
|
||||||
|
// 证件
|
||||||
|
private String CARDID; |
||||||
|
|
||||||
|
private String STREET = null; |
||||||
|
|
||||||
|
// 主键id
|
||||||
|
private String METADATAID; |
||||||
|
|
||||||
|
private String REGION = null; |
||||||
|
|
||||||
|
private int GOVMSGBOXTYPE = 1; |
||||||
|
|
||||||
|
private String CITY = null; |
||||||
|
|
||||||
|
private String PARENTID = null; |
||||||
|
|
||||||
|
// 查询编号
|
||||||
|
private String QUERYNUMBER; |
||||||
|
|
||||||
|
private int ISPUBLIC = 0; |
||||||
|
|
||||||
|
// 处理部门
|
||||||
|
private String DEALDEPTID; |
||||||
|
|
||||||
|
private String PROVINCE = null; |
||||||
|
|
||||||
|
private String TITLE = null; |
||||||
|
|
||||||
|
private String UNIONDEPTREPLYS = null; |
||||||
|
|
||||||
|
private String CARDTYPE = "身份证"; |
||||||
|
|
||||||
|
private String EXTERNALID = null; |
||||||
|
|
||||||
|
@Getter |
||||||
|
@Setter |
||||||
|
private static class Reply{ |
||||||
|
|
||||||
|
private String REPLYHTMLCONTENT = null; |
||||||
|
|
||||||
|
private String REPLYUSER = null; |
||||||
|
|
||||||
|
private String REPLYDEPT = null; |
||||||
|
|
||||||
|
private String REPLYTIME = null; |
||||||
|
|
||||||
|
private String REPLYID = null; |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,9 @@ |
|||||||
|
package com.biutag.outer.mapper; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.biutag.outer.domain.Mail12345Log; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
@Mapper |
||||||
|
public interface Mail12345LogMapper extends BaseMapper<Mail12345Log> { |
||||||
|
} |
||||||
Loading…
Reference in new issue