Compare commits

..

No commits in common. "d3807cbb891e59377019033bffbcd26cd4d339c5" and "1a9f89510929d87086f8f8d11b72ea10140df434" have entirely different histories.

12 changed files with 52 additions and 189 deletions

View File

@ -50,11 +50,6 @@
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
</dependency>
<!--<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.6</version>
</dependency>-->
</dependencies>
</project>

View File

@ -125,7 +125,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<insert id="insertTbXjxdzhxxb" parameterType="basepro.manager.pojo.TbXjxdzhxxb">
insert into tb_xjxdzhxxb
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="Id != null and Id != '' ">id,</if>
<if test="Id != null ">id,</if>
<if test="XZQHDM != null and XZQHDM != ''">XZQHDM,</if>
<if test="XZQHMC != null and XZQHMC != ''">XZQHMC,</if>
<if test="GAJGDM != null and GAJGDM != ''">GAJGDM,</if>
@ -170,7 +170,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="ChwpGzdj != null ">CHWP_GZDJ,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="Id != null and Id != '' ">#{Id},</if>
<if test="Id != null ">#{Id},</if>
<if test="XZQHDM != null and XZQHDM != ''">#{XZQHDM},</if>
<if test="XZQHMC != null and XZQHMC != ''">#{XZQHMC},</if>
<if test="GAJGDM != null and GAJGDM != ''">#{GAJGDM},</if>

View File

@ -39,8 +39,6 @@ public interface ITbXjxdzhxxbService
*/
public int insertTbXjxdzhxxb(TbXjxdzhxxb tbXjxdzhxxb);
public int insertTbXjxdzhxxbGs(TbXjxdzhxxb tbXjxdzhxxb);
/**
*
*
@ -49,8 +47,6 @@ public interface ITbXjxdzhxxbService
*/
public int updateTbXjxdzhxxb(TbXjxdzhxxb tbXjxdzhxxb);
public int updateTbXjxdzhxxbGs(TbXjxdzhxxb tbXjxdzhxxb);
/**
*
*
@ -67,7 +63,7 @@ public interface ITbXjxdzhxxbService
*/
public int deleteTbXjxdzhxxbById(Long Id);
public TbXjxdzhxxb getNumByPctj(String manageDeptId, String date);
public TbXjxdzhxxb getNumByPctj(String manageDeptId);
public List<TbXjxdzhxxb> xjxdStatics(TbXjxdzhxxb xjxdzhxxb);
}

View File

@ -20,7 +20,7 @@ public class TbXjxdzhxxb extends BaseEntity
private static final long serialVersionUID = 1L;
/** 主键 */
private String Id;
private Long Id;
/** 行政区划代码 */
@Excel(name = "行政区划代码")
@ -43,8 +43,6 @@ public class TbXjxdzhxxb extends BaseEntity
@JsonFormat(pattern = "yyyy-MM-dd")
private Date ZAFKRQ;
private String zafkrqStr;
/** 投入民辅警力数量(人次) */
@Excel(name = "投入民辅警力数量", readConverterExp = "人=次")
private Long TRXFJLSL;
@ -195,14 +193,15 @@ public class TbXjxdzhxxb extends BaseEntity
private List<TbStuck> stuckList;
public String getId() {
public void setId(Long Id)
{
this.Id = Id;
}
public Long getId()
{
return Id;
}
public void setId(String id) {
Id = id;
}
public void setXZQHDM(String XZQHDM)
{
this.XZQHDM = XZQHDM;
@ -590,14 +589,6 @@ public class TbXjxdzhxxb extends BaseEntity
this.stuckList = stuckList;
}
public String getZafkrqStr() {
return zafkrqStr;
}
public void setZafkrqStr(String zafkrqStr) {
this.zafkrqStr = zafkrqStr;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)

View File

@ -93,20 +93,6 @@
<artifactId>mybatis</artifactId>
<version>3.4.6</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.14</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.6</version>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-autoconfigure</artifactId>
@ -143,19 +129,6 @@
<artifactId>fastjson</artifactId>
<version>1.2.60</version>
</dependency>
<dependency>
<groupId>com.huaweicloud.dws</groupId>
<artifactId>huaweicloud-dws-jdbc</artifactId>
<version>8.3.0</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>4.3.13.RELEASE</version>
</dependency>
<!--<dependency>
<groupId>guo.ping.e3mall</groupId>
<artifactId>basepro-framework</artifactId>

View File

@ -6,7 +6,6 @@ import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.context.annotation.Bean;
@ -16,7 +15,7 @@ import org.springframework.scheduling.annotation.EnableAsync;
import java.util.concurrent.CountDownLatch;
@MapperScan(value = "basepro.manager.mapper")
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
@SpringBootApplication
@EnableAsync
public class BaseProServiceApplicationStarter extends SpringBootServletInitializer {
@ -33,7 +32,7 @@ public class BaseProServiceApplicationStarter extends SpringBootServletInitializ
}
/*@Override
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
return builder.sources(BaseProServiceApplicationStarter.class);
}
@ -43,7 +42,7 @@ public class BaseProServiceApplicationStarter extends SpringBootServletInitializ
PropertySourcesPlaceholderConfigurer c = new PropertySourcesPlaceholderConfigurer();
c.setIgnoreUnresolvablePlaceholders(true);
return c;
}*/
}
@Bean
public MessageClient messageClient(){

View File

@ -2,7 +2,7 @@ package basepro.manager.config;
import org.springframework.context.annotation.Configuration;
//@Configuration
@Configuration
public class DruidConfiguration {
}

View File

@ -7,7 +7,6 @@ import java.util.List;
import basepro.manager.common.core.text.Convert;
import basepro.manager.common.utils.DateUtils;
import basepro.manager.config.DataSourceUtil;
import basepro.manager.mapper.RoadCheckStatisticsMapper;
import basepro.manager.mapper.SysDeptMapper;
import basepro.manager.mapper.TbStuckMapper;
@ -20,7 +19,6 @@ import basepro.manager.service.ITbXjxdzhxxbService;
import com.alibaba.dubbo.config.annotation.Service;
import com.alibaba.fastjson.JSONObject;
import com.github.pagehelper.PageHelper;
import guo.ping.e3mall.common.annotation.DataSource;
import guo.ping.e3mall.common.page.TableDataInfo;
import org.apache.poi.ss.formula.functions.T;
import org.springframework.beans.factory.annotation.Autowired;
@ -89,27 +87,10 @@ public class TbXjxdzhxxbServiceImpl implements ITbXjxdzhxxbService
@Override
public int insertTbXjxdzhxxb(TbXjxdzhxxb tbXjxdzhxxb)
{
tbXjxdzhxxb.setZAFKRQ(DateUtils.parseDate(tbXjxdzhxxb.getZafkrqStr()));
tbXjxdzhxxb.setZAFKRQ(DateUtils.getNowDate());
return tbXjxdzhxxbMapper.insertTbXjxdzhxxb(tbXjxdzhxxb);
}
@Override
// @DataSource(DataSourceEnum.DB2)
public int insertTbXjxdzhxxbGs(TbXjxdzhxxb tbXjxdzhxxb) {
DataSourceUtil.setDB("db2");
tbXjxdzhxxb.setZAFKRQ(DateUtils.parseDate(tbXjxdzhxxb.getZafkrqStr()));
return tbXjxdzhxxbMapper.insertTbXjxdzhxxb(tbXjxdzhxxb);
}
@Override
// @DataSource(DataSourceEnum.DB2)
public int updateTbXjxdzhxxbGs(TbXjxdzhxxb tbXjxdzhxxb) {
DataSourceUtil.setDB("db2");
tbXjxdzhxxb.setZAFKRQ(DateUtils.parseDate(tbXjxdzhxxb.getZafkrqStr()));
int num = tbXjxdzhxxbMapper.updateTbXjxdzhxxb(tbXjxdzhxxb);
return num;
}
/**
*
*
@ -119,7 +100,6 @@ public class TbXjxdzhxxbServiceImpl implements ITbXjxdzhxxbService
@Override
public int updateTbXjxdzhxxb(TbXjxdzhxxb tbXjxdzhxxb)
{
tbXjxdzhxxb.setZAFKRQ(DateUtils.parseDate(tbXjxdzhxxb.getZafkrqStr()));
int num = tbXjxdzhxxbMapper.updateTbXjxdzhxxb(tbXjxdzhxxb);
return num;
}
@ -149,11 +129,9 @@ public class TbXjxdzhxxbServiceImpl implements ITbXjxdzhxxbService
}
@Override
public TbXjxdzhxxb getNumByPctj(String manageDeptId ,String date) {
public TbXjxdzhxxb getNumByPctj(String manageDeptId) {
TbXjxdzhxxb xjxd = new TbXjxdzhxxb();
if (null == date || "".equals(date)){
date = DateUtils.getDate();
}
String date = DateUtils.getDate();
HashMap map = new HashMap();
map.put("beginTime",date);
map.put("endTime",date);

View File

@ -6,20 +6,11 @@ mybatis:
spring:
datasource:
druid:
# driver-class-name: com.mysql.jdbc.Driver
db1:
username: root
password: root
jdbc-url: jdbc:mysql://localhost:3306/e3?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
driver-class-name: com.mysql.jdbc.Driver
db2:
username: ahrs
password: Ycgis!2509
jdbc-url: jdbc:postgresql://192.168.0.168:5432/sjzl?currentSchema=public&useUnicode=true&characterEncoding=utf8&useSSL=true&autoReconnect=true&reWriteBatchedInserts=true
driver-class-name: org.postgresql.Driver
# type: com.alibaba.druid.pool.DruidDataSource
username: root
password: root
url: jdbc:mysql://192.168.0.112:3306/e3?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
driver-class-name: com.mysql.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource
devtools:
restart:
enabled: true

View File

@ -1,7 +1,6 @@
package basepro.manager.controller;
import java.util.List;
import java.util.UUID;
import basepro.manager.common.annotation.DataScope;
import basepro.manager.common.annotation.Log;
@ -91,7 +90,7 @@ public class TbXjxdzhxxbController extends BaseController
public String add(ModelMap mmap)
{
SysUser user = ShiroUtils.getSysUser();
TbXjxdzhxxb xjxd = tbXjxdzhxxbService.getNumByPctj(user.getManageDeptId(),null);
TbXjxdzhxxb xjxd = tbXjxdzhxxbService.getNumByPctj(user.getManageDeptId());
mmap.put("xjxd",xjxd);
return prefix + "/add";
}
@ -105,20 +104,9 @@ public class TbXjxdzhxxbController extends BaseController
@ResponseBody
public AjaxResult addSave(TbXjxdzhxxb tbXjxdzhxxb)
{
String uuid = UUID.randomUUID().toString();
tbXjxdzhxxb.setId(uuid);
tbXjxdzhxxbService.insertTbXjxdzhxxbGs(tbXjxdzhxxb);
return toAjax(tbXjxdzhxxbService.insertTbXjxdzhxxb(tbXjxdzhxxb));
}
@PostMapping("/getDataByDate")
@ResponseBody
public AjaxResult getDataByDate(String date){
SysUser user = ShiroUtils.getSysUser();
TbXjxdzhxxb xjxd = tbXjxdzhxxbService.getNumByPctj(user.getManageDeptId(),date);
return AjaxResult.success(xjxd);
}
/**
*
*/

View File

@ -120,10 +120,10 @@
field : 'xzqhmc',
title : '纠纷地行政区划名称'
},
/*{
{
field : 'fsdz',
title : '纠纷发生地址'
},*/
},
{
field : 'mdjfly',
title : '矛盾纠纷来源',
@ -173,10 +173,10 @@
field : 'zrdwmc',
title : '责任公安机关'
},
/*{
{
field : 'tcsj',
title : '纠纷调处时间'
},*/
},
/*{
field : 'tcgcjs',
title : '矛盾纠纷调处过程简述'
@ -188,10 +188,10 @@
return $.table.selectDictLabel(jgdatas, item.tcjg);
}
},
/*{
{
field : 'jlgxsj',
title : '记录更新时间'
},*/
},
{
title: '操作',
align: 'center',

View File

@ -44,19 +44,6 @@
</div>
</div>
</div>
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label">登记日期:</label>
<div class="col-sm-8">
<input name="zafkrqStr" class="form-control" type="text" required>
</div>
</div>
</div>
<div class="col-sm-5">
</div>
</div>
<h4 class="form-header h4">社会面防控总体情况</h4>
<div class="row">
<div class="col-sm-5">
@ -88,7 +75,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>抓获违法犯罪嫌疑人数量:</label>
<label class="col-sm-4 control-label">抓获违法犯罪嫌疑人数量:</label>
<div class="col-sm-8">
<input name="ZAKDSL" class="form-control" type="number" value="0" th:value="*{xjxd.ZAKDSL}" required>
</div>
@ -98,7 +85,7 @@
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>检查车辆数量:</label>
<label class="col-sm-4 control-label">检查车辆数量:</label>
<div class="col-sm-8">
<input name="JCCLSL" class="form-control" type="number" value="0" th:value="*{xjxd.JCCLSL}" required>
</div>
@ -106,7 +93,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>盘查人员数量:</label>
<label class="col-sm-4 control-label">盘查人员数量:</label>
<div class="col-sm-8">
<input name="PCRYSL" class="form-control" type="number" value="0" th:value="*{xjxd.PCRYSL}" required>
</div>
@ -126,7 +113,6 @@
</div>
</div>
<div class="row"><span style="color: red; ">注*数据来源为人车物平台路面盘查数据,可根据实际情况进行修改</span></div>
<h4 class="form-header h4">社会面防控总体情况</h4>
<div class="row">
<div class="col-sm-5">
@ -254,7 +240,7 @@
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>排查矛盾纠纷数量:</label>
<label class="col-sm-4 control-label">排查矛盾纠纷数量:</label>
<div class="col-sm-8">
<input name="PCMDJFSL" class="form-control" type="number" value="0" required>
</div>
@ -262,7 +248,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>化解矛盾纠纷数量:</label>
<label class="col-sm-4 control-label">化解矛盾纠纷数量:</label>
<div class="col-sm-8">
<input name="HJMDJFSL" class="form-control" type="number" value="0" required>
</div>
@ -272,7 +258,7 @@
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>婚恋家庭纠纷数量:</label>
<label class="col-sm-4 control-label">婚恋家庭纠纷数量:</label>
<div class="col-sm-8">
<input name="HLJTJFSL" class="form-control" type="number" value="0" required>
</div>
@ -280,7 +266,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>化解婚恋家庭纠纷数量:</label>
<label class="col-sm-4 control-label">化解婚恋家庭纠纷数量:</label>
<div class="col-sm-8">
<input name="HJHLJTJFSL" class="form-control" type="number" value="0" required>
</div>
@ -290,7 +276,7 @@
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>邻里纠纷数量:</label>
<label class="col-sm-4 control-label">邻里纠纷数量:</label>
<div class="col-sm-8">
<input name="LLJFSL" class="form-control" type="number" value="0" required>
</div>
@ -298,7 +284,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>化解邻里纠纷数量:</label>
<label class="col-sm-4 control-label">化解邻里纠纷数量:</label>
<div class="col-sm-8">
<input name="HJLLJFSL" class="form-control" type="number" value="0" required>
</div>
@ -308,7 +294,7 @@
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>经济纠纷数量:</label>
<label class="col-sm-4 control-label">经济纠纷数量:</label>
<div class="col-sm-8">
<input name="JJJFSL" class="form-control" type="number" value="0" required>
</div>
@ -316,7 +302,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>化解经济纠纷数量:</label>
<label class="col-sm-4 control-label">化解经济纠纷数量:</label>
<div class="col-sm-8">
<input name="HJJJJFSL" class="form-control" type="number" value="0" required>
</div>
@ -326,7 +312,7 @@
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>医疗纠纷数量:</label>
<label class="col-sm-4 control-label">医疗纠纷数量:</label>
<div class="col-sm-8">
<input name="YLJFSL" class="form-control" type="number" value="0" required>
</div>
@ -334,19 +320,18 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>化解医疗纠纷数量:</label>
<label class="col-sm-4 control-label">化解医疗纠纷数量:</label>
<div class="col-sm-8">
<input name="HJYLJFSL" class="form-control" type="number" value="0" required>
</div>
</div>
</div>
</div>
<div class="row"><span style="color: red; ">注*数据来源为瑞信矛盾纠纷平台数据,可根据实际情况进行修改</span></div>
<h4 class="form-header h4">检查站查控</h4>
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>运行公安检查站数量:</label>
<label class="col-sm-4 control-label">运行公安检查站数量:</label>
<div class="col-sm-8">
<input name="YXGAJCZSL" class="form-control" type="number" value="0" th:value="*{xjxd.YXGAJCZSL}" required>
</div>
@ -354,7 +339,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>设立临时治安卡点数量:</label>
<label class="col-sm-4 control-label">设立临时治安卡点数量:</label>
<div class="col-sm-8">
<input name="SLZHKDSL" class="form-control" type="number" value="0" th:value="*{xjxd.SLZHKDSL}" required>
</div>
@ -364,7 +349,7 @@
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>核查人员数量:</label>
<label class="col-sm-4 control-label">核查人员数量:</label>
<div class="col-sm-8">
<input name="ZAPCRYSL" class="form-control" type="number" value="0" th:value="*{xjxd.ZAPCRYSL}" required>
</div>
@ -372,7 +357,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>检查车辆数量:</label>
<label class="col-sm-4 control-label">检查车辆数量:</label>
<div class="col-sm-8">
<input name="ZAPCCLSL" class="form-control" type="number" value="0" th:value="*{xjxd.ZAPCCLSL}" required>
</div>
@ -382,7 +367,7 @@
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>抓获在逃人员数量:</label>
<label class="col-sm-4 control-label">抓获在逃人员数量:</label>
<div class="col-sm-8">
<input name="ZHZTRYSL" class="form-control" type="number" value="0" th:value="*{xjxd.ZHZTRYSL}" required>
</div>
@ -390,7 +375,7 @@
</div>
<div class="col-sm-5">
<div class="form-group">
<label class="col-sm-4 control-label"><span style="color: red; ">*</span>劝返涉访人员数量:</label>
<label class="col-sm-4 control-label">劝返涉访人员数量:</label>
<div class="col-sm-8">
<input name="QFSFRYSL" class="form-control" type="number" value="0" th:value="*{xjxd.QFSFRYSL}" required>
</div>
@ -410,7 +395,6 @@
</div>
</div>
<div class="row"><span style="color: red; ">注*数据来源为人车物平台卡点盘查数据,可根据实际情况进行修改</span></div>
</form>
</div>
<th:block th:include="include :: footer" />
@ -427,42 +411,10 @@
}
}
$("input[name='zafkrqStr']").datetimepicker({
$("input[name='ZAFKRQ']").datetimepicker({
format: "yyyy-mm-dd",
minView: 2,
minView: "month",
autoclose: true
}).on('changeDate',function(){
var starttime=$('#zafkrqStr').val();
$.ajax({
url: prefix + '/getDataByDate',
type: 'POST',
data: {date: starttime},
success: function (res) {
var data = res.data;
$(':input[name="ZAKDSL"]').val(data.zakdsl);
$(':input[name="JCCLSL"]').val(data.jcclsl);
$(':input[name="PCRYSL"]').val(data.pcrysl);
/* $(':input[name="PCMDJFSL"]').val(data.pcmdjfsl);
$(':input[name="HJMDJFSL"]').val(data.hjmdjfsl);
$(':input[name="HLJTJFSL"]').val(data.hljtjfsl);
$(':input[name="HJHLJTJFSL"]').val(data.hjhljtjfsl);
$(':input[name="LLJFSL"]').val(data.lljfsl);
$(':input[name="HJLLJFSL"]').val(data.hjlljfsl);
$(':input[name="JJJFSL"]').val(data.jjjfsl);
$(':input[name="HJJJJFSL"]').val(data.hjjjjfsl);
$(':input[name="YLJFSL"]').val(data.yljfsl);
$(':input[name="HJYLJFSL"]').val(data.hjyljfsl);*/
$(':input[name="YXGAJCZSL"]').val(data.yxgajczsl);
$(':input[name="SLZHKDSL"]').val(data.slzhkdsl);
$(':input[name="ZAPCRYSL"]').val(data.zapcrysl);
$(':input[name="ZAPCCLSL"]').val(data.zapcclsl);
$(':input[name="ZHZTRYSL"]').val(data.zhztrysl);
$(':input[name="QFSFRYSL"]').val(data.qfsfrysl);
// $(':input[name="nameValue"]').val();
// $(':input[name="nameValue"]').val();
// $(':input[name="nameValue"]').val();
}
})
});
</script>
</body>