Commit 389ffee7 by 吴善钰

网侦预警,添加诈骗类型字段

parent 6e9da89d
...@@ -47,6 +47,9 @@ public class TbStDxzp extends BaseModel { ...@@ -47,6 +47,9 @@ public class TbStDxzp extends BaseModel {
//警情是否有效 //警情是否有效
private String jqzt_flag; private String jqzt_flag;
//诈骗类型
private String zplx;
//分页查询用 //分页查询用
//查询分页开始结束 //查询分页开始结束
protected Integer begin = null; protected Integer begin = null;
...@@ -180,6 +183,14 @@ public class TbStDxzp extends BaseModel { ...@@ -180,6 +183,14 @@ public class TbStDxzp extends BaseModel {
this.jqzt_flag = jqzt_flag; this.jqzt_flag = jqzt_flag;
} }
public String getZplx() {
return zplx;
}
public void setZplx(String zplx) {
this.zplx = zplx;
}
@Override @Override
public Integer getBegin() { public Integer getBegin() {
return begin; return begin;
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
BPF_SJHM bpfSjhm, BPF_SJHM bpfSjhm,
BPF_QQ bpfQq, BPF_QQ bpfQq,
YJQD yjqd, YJQD yjqd,
ZPLX zplx,
to_char(JSSJ, 'yyyy-MM-dd') as jssj to_char(JSSJ, 'yyyy-MM-dd') as jssj
from TB_ST_DXZP where XXSC_PDBZ = '0' from TB_ST_DXZP where XXSC_PDBZ = '0'
<if test="czzt!=null and czzt!=''">and CZZT=#{czzt}</if> <if test="czzt!=null and czzt!=''">and CZZT=#{czzt}</if>
...@@ -26,6 +27,7 @@ ...@@ -26,6 +27,7 @@
<if test="bpfQq!=null and bpfQq!=''">and BPF_QQ=#{bpfQq}</if> <if test="bpfQq!=null and bpfQq!=''">and BPF_QQ=#{bpfQq}</if>
<if test="bpfSjhm!=null and bpfSjhm!=''">and BPF_SJHM=#{bpfSjhm}</if> <if test="bpfSjhm!=null and bpfSjhm!=''">and BPF_SJHM=#{bpfSjhm}</if>
<if test="yjqd!=null and yjqd!=''">and YJQD=#{yjqd}</if> <if test="yjqd!=null and yjqd!=''">and YJQD=#{yjqd}</if>
<if test="zplx!=null and zplx!=''">and ZPLX=#{zplx}</if>
ORDER BY JSSJ DESC,YJQD DESC,RKSJ DESC) t ORDER BY JSSJ DESC,YJQD DESC,RKSJ DESC) t
WHERE ROWNUM <![CDATA[<=]]> #{end} WHERE ROWNUM <![CDATA[<=]]> #{end}
) WHERE RN > #{begin} ) WHERE RN > #{begin}
...@@ -42,6 +44,7 @@ ...@@ -42,6 +44,7 @@
<if test="bpfQq!=null and bpfQq!=''">and BPF_QQ=#{bpfQq}</if> <if test="bpfQq!=null and bpfQq!=''">and BPF_QQ=#{bpfQq}</if>
<if test="bpfSjhm!=null and bpfSjhm!=''">and BPF_SJHM=#{bpfSjhm}</if> <if test="bpfSjhm!=null and bpfSjhm!=''">and BPF_SJHM=#{bpfSjhm}</if>
<if test="yjqd!=null and yjqd!=''">and YJQD=#{yjqd}</if> <if test="yjqd!=null and yjqd!=''">and YJQD=#{yjqd}</if>
<if test="zplx!=null and zplx!=''">and ZPLX=#{zplx}</if>
</select> </select>
<select id="getWzyjXxById" parameterType="java.lang.String" resultType="com.founder.model.TbStDxzp"> <select id="getWzyjXxById" parameterType="java.lang.String" resultType="com.founder.model.TbStDxzp">
...@@ -58,6 +61,7 @@ ...@@ -58,6 +61,7 @@
BPF_QQ bpfQq, BPF_QQ bpfQq,
BPF_SJHM bpfSjhm, BPF_SJHM bpfSjhm,
YJQD yjqd, YJQD yjqd,
ZPLX zplx,
XXCZR_XM xxczrXm, XXCZR_XM xxczrXm,
XXCZR_JH xxczrJh, XXCZR_JH xxczrJh,
XXCZR_DW xxczrDw XXCZR_DW xxczrDw
......
...@@ -11,14 +11,15 @@ var table_title = [ ...@@ -11,14 +11,15 @@ var table_title = [
return getCz(row); return getCz(row);
} }
}, },
{title: '诈骗方微信账号', field: 'zpfWxid', align: 'center', width: '15%'}, {title: '诈骗方微信账号', field: 'zpfWxid', align: 'center', width: '12%'},
{title: '诈骗方QQ', field: 'zpfQq', align: 'center', width: '10%'}, {title: '诈骗方QQ', field: 'zpfQq', align: 'center', width: '10%'},
{title: '诈骗方手机号码', field: 'zpfSjhm', align: 'center', width: '10%'}, {title: '诈骗方手机号码', field: 'zpfSjhm', align: 'center', width: '10%'},
{title: "被骗方微信账号", field: "bpfWxid", align: 'center', width: '15%'}, {title: "被骗方微信账号", field: "bpfWxid", align: 'center', width: '12%'},
{title: "被骗方QQ", field: "bpfQq", align: 'center', width: '10%'}, {title: "被骗方QQ", field: "bpfQq", align: 'center', width: '10%'},
{title: "被骗方手机号码", field: "bpfSjhm", align: 'center', width: '10%'}, {title: "被骗方手机号码", field: "bpfSjhm", align: 'center', width: '10%'},
{title: "接收时间", field: "jssj", align: 'center', width: '12%'}, {title: "接收时间", field: "jssj", align: 'center', width: '10%'},
{title: "预警强度", field: "yjqd", align: 'center', width: '8%'}, {title: "预警强度", field: "yjqd", align: 'center', width: '6%'},
{title: '诈骗类型', field: 'zplx', align: 'center', width: '10%'},
]; ];
function yjcz(id) { function yjcz(id) {
...@@ -116,4 +117,5 @@ function doClear() { ...@@ -116,4 +117,5 @@ function doClear() {
$("#bpfWxid").textbox('setValue', "") $("#bpfWxid").textbox('setValue', "")
$("#bpfQq").textbox('setValue', "") $("#bpfQq").textbox('setValue', "")
$("#bpfSjhm").textbox('setValue', "") $("#bpfSjhm").textbox('setValue', "")
$("#zplx").textbox('setValue', "")
} }
\ No newline at end of file
...@@ -94,10 +94,14 @@ ...@@ -94,10 +94,14 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<td class="ar" style="width:12%;">处置状态:</td> <td class="ar" width="13.3%">诈骗类型:</td>
<td> <td width="20%">
<input type="radio" name="czzt" id="jqyx_y" value="0" checked="checked" onclick="doQuery()"><label for="jqyx_y" style='cursor:pointer;background:none;'>未处置&nbsp;&nbsp;&nbsp;</label></input> <input class="easyui-textbox" style="height:26px;width:184px;" type="text" name="zplx" id="zplx">
<input type="radio" name="czzt" id="jqyx_n" value="1" onclick="doQuery()"><label for="jqyx_n" style='cursor:pointer;background:none;'>已处置</label></input> </td >
<td class="ar" width="13.3%">处置状态:</td>
<td width="20%">
<input type="radio" style="margin: 0px;" name="czzt" id="jqyx_y" value="0" checked="checked" onclick="doQuery()"><label for="jqyx_y" style='cursor:pointer;background:none;padding-top: 4px;'>未处置&nbsp;&nbsp;&nbsp;</label></input>
<input type="radio" style="margin: 0px;" name="czzt" id="jqyx_n" value="1" onclick="doQuery()"><label for="jqyx_n" style='cursor:pointer;background:none;'>已处置</label></input>
</td> </td>
</tr> </tr>
<tr> <tr>
......
...@@ -90,7 +90,11 @@ ...@@ -90,7 +90,11 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<td class="ar" style="width:12%;">预警强度:</td> <td class="ar" width="15%">诈骗类型:</td>
<td width="20%">
${tbStDxzp.zplx}
</td>
<td class="ar" width="15%">预警强度:</td>
<td width="20%"> <td width="20%">
${tbStDxzp.yjqd} ${tbStDxzp.yjqd}
</td> </td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment