13 changed files with 137 additions and 17 deletions
@ -0,0 +1,80 @@
|
||||
package com.biutag.supervision.pojo.vo; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import com.baomidou.mybatisplus.annotation.TableId; |
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
import java.time.LocalDateTime; |
||||
|
||||
/** |
||||
* 信访投诉 |
||||
*/ |
||||
@Setter |
||||
@Getter |
||||
public class DataPetitionComplaintVo { |
||||
|
||||
// 信件编号
|
||||
private String originId; |
||||
|
||||
// 投诉渠道
|
||||
private String channelForFilingComplaints; |
||||
|
||||
// 受理层级
|
||||
private String acceptanceLevel; |
||||
|
||||
// 登记时间
|
||||
private LocalDateTime discoveryTime; |
||||
|
||||
// 投诉人
|
||||
private String responderName; |
||||
|
||||
// 投诉人电话
|
||||
private String responderPhone; |
||||
|
||||
// 初重信访
|
||||
private String initialPetition; |
||||
|
||||
// 缠访闹访
|
||||
private Boolean entanglementVisits; |
||||
|
||||
// 群众集访
|
||||
private Boolean massVisits; |
||||
|
||||
// 涉嫌问题
|
||||
private String involveProblem; |
||||
|
||||
// 业务类别
|
||||
private String businessTypeName; |
||||
|
||||
// 涉及警种名称
|
||||
private String policeTypeName; |
||||
|
||||
// 具体内容
|
||||
private String thingDesc; |
||||
|
||||
|
||||
|
||||
// 涉及单位 二级
|
||||
private String secondDepartId; |
||||
|
||||
private String secondDepartName; |
||||
|
||||
// 所对
|
||||
private String thirdDepartId; |
||||
|
||||
private String thirdDepartName; |
||||
|
||||
private LocalDateTime createTime; |
||||
|
||||
private LocalDateTime updateTime; |
||||
|
||||
// 来源
|
||||
private String problemSourcesCode; |
||||
|
||||
// 分发状态
|
||||
private String distributionState; |
||||
|
||||
private String negativeId; |
||||
|
||||
} |
||||
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?> |
||||
<!DOCTYPE mapper |
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.biutag.supervision.mapper.DataPetitionComplaintMapper"> |
||||
|
||||
<select id="queryPage" resultType="com.biutag.supervision.pojo.vo.DataPetitionComplaintVo"> |
||||
SELECT |
||||
pc.*, n.id negative_id |
||||
FROM |
||||
data_petition_complaint pc |
||||
LEFT JOIN negative n ON n.originId = pc.origin_id |
||||
${ew.getCustomSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
||||
Loading…
Reference in new issue