Commit 575c7f89 by zlr

残疾字段修改

parent 0b8deb05
......@@ -36,265 +36,265 @@ public class Fdx06 {
*/
@ApiModelProperty("残疾人姓名")
private String axcp0002;
/**
* 性别
*/
@ApiModelProperty("性别")
private String axcp0006;
/**
* 残疾人出生日期
*/
@ApiModelProperty("残疾人出生日期")
private Date agax0823;
private Date afdx0823;
/**
* 民族
*/
@ApiModelProperty("民族")
private String axcp0008;
/**
* 残疾人身份证号
*/
@ApiModelProperty("残疾人身份证号")
private String axcp0005;
/**
* 残疾人证号
*/
@ApiModelProperty("残疾人证号")
private String afdp0505;
/**
* 发证时间
*/
@ApiModelProperty("发证时间")
private Date afdx0831;
/**
* 档案编号
*/
@ApiModelProperty("档案编号")
private String afdx0852;
/**
* 残疾类别
*/
@ApiModelProperty("残疾类别")
private String afdp0504;
/**
* 残疾人等级
*/
@ApiModelProperty("残疾人等级")
private String afdp0503;
/**
* 补贴对象类型
*/
@ApiModelProperty("补贴对象类型")
private String afdx0053;
/**
* 补贴类型
*/
@ApiModelProperty("补贴类型")
private String axcp0014;
/**
* 补贴发放起始月份
*/
@ApiModelProperty("补贴发放起始月份")
private Date afdx0054;
/**
* 补贴发截止始月份
*/
@ApiModelProperty("补贴发截止始月份")
private Date afdx0055;
/**
* 月工资
*/
@ApiModelProperty("月工资")
private Integer afdx0851;
/**
* 发放起始月份
*/
@ApiModelProperty("发放起始月份")
private Date afdx0561;
/**
* 户籍性质
*/
@ApiModelProperty("户籍性质")
private String afdx0829;
/**
* 低保性质
*/
@ApiModelProperty("低保性质")
private String afdx0830;
/**
* 户籍地址
*/
@ApiModelProperty("户籍地址")
private String afdx0820;
/**
* 残疾人家庭住址
*/
@ApiModelProperty("残疾人家庭住址")
private String afdx0824;
/**
* 邮政编码
*/
@ApiModelProperty("邮政编码")
private String afdx0819;
/**
* 残疾人电话
*/
@ApiModelProperty("残疾人电话")
private String afdp0004;
/**
* 残疾人联系人
*/
@ApiModelProperty("残疾人联系人")
private String afdx0843;
/**
* 残疾人联系人电话
*/
@ApiModelProperty("残疾人联系人电话")
private String afdx0844;
/**
* 开户行
*/
@ApiModelProperty("开户行")
private String axcp0027;
/**
* 银行账户名
*/
@ApiModelProperty("银行账户名")
private String axcp0030;
/**
* 银行卡号
*/
@ApiModelProperty("银行卡号")
private String axcp0029;
/**
* 省
*/
@ApiModelProperty("省")
private String afdx0806;
/**
* 市
*/
@ApiModelProperty("市")
private String afdx0807;
/**
* 县
*/
@ApiModelProperty("县")
private String afdx0808;
/**
* 乡镇
*/
@ApiModelProperty("乡镇")
private String afdx0802;
/**
* 乡镇录入人姓名
*/
@ApiModelProperty("乡镇录入人姓名")
private String afdx0567;
/**
* 乡镇录入人电话
*/
@ApiModelProperty("乡镇录入人电话")
private String afdx0568;
/**
* 乡镇录入意见
*/
@ApiModelProperty("乡镇录入意见")
private String afdx0566;
/**
* 残联审核人姓名
*/
@ApiModelProperty("残联审核人姓名")
private String afdx0570;
/**
* 残联审核人电话
*/
@ApiModelProperty("残联审核人电话")
private String afdx0571;
/**
* 残联审核意见
*/
@ApiModelProperty("残联审核意见")
private String afdx0569;
/**
* 民政审定人姓名
*/
@ApiModelProperty("民政审定人姓名")
private String afdx1017;
/**
* 民政审定人电话
*/
@ApiModelProperty("民政审定人电话")
private String afdx0574;
/**
* 民政审定意见
*/
@ApiModelProperty("民政审定意见")
private String afdx0572;
/**
* 乡镇初审时间
*/
@ApiModelProperty("乡镇初审时间")
private Date afdx0868;
/**
* 残联审核时间
*/
@ApiModelProperty("残联审核时间")
private Date afdx0869;
/**
* 民政审定时间
*/
@ApiModelProperty("民政审定时间")
private Date afdx0870;
/**
* 录入时间
*/
@ApiModelProperty("录入时间")
private Date afdx0817;
/**
* 修改时间
*/
......@@ -324,4 +324,4 @@ public class Fdx06 {
*/
@ApiModelProperty("区划代码")
private String areacode;
}
\ No newline at end of file
}
......@@ -62,13 +62,16 @@ public class DisabledService {
JSONObject object = JSONUtil.parseObj(o);
String serialNumber = object.getStr("serialNumber");
String errorInfo = object.getStr("error_info");
erroorDao.insert(ReportError.builder()
.tableName(tableName)
.serialNumber(serialNumber)
.errorInfo(errorInfo)
.state(0)
.createTime(DateUtil.date())
.build());
if (object != null) {
erroorDao.insert(ReportError.builder()
.tableName(tableName)
.serialNumber(serialNumber)
.errorInfo(errorInfo)
.state(0)
.createTime(DateUtil.date())
.build());
}
System.out.println(errorList);
}
}
}
......@@ -106,7 +109,7 @@ public class DisabledService {
.areacode(fdx88.getAreacode())
.build();
HttpRequest request = HttpRequest.post("https://zwxt.mca.gov.cn/yhbcp-engine_gov/rest/cjrfl_report_btdxlxxx")
HttpRequest request = HttpRequest.post("http://192.168.0.251/yhbcp-engine_gov/rest/cjrfl_report_btdxlxxx")
.contentType("application/x-www-form-urlencoded")
.form("access_key", "mzb_gx_450000")
.form("format", "json")
......@@ -114,7 +117,6 @@ public class DisabledService {
.form("timestamp", System.currentTimeMillis())
.form("version", "1.0")
.form("biz_content", JSONUtil.toJsonStr(build));
System.out.println(request);
reportCommon(request, "fdx88");
}
......@@ -165,7 +167,7 @@ public class DisabledService {
.areacode(fdx07.getAreacode())
.build();
HttpRequest request = HttpRequest.post("https://zwxt.mca.gov.cn/yhbcp-engine_gov/rest/cjrfl_report_ffhzxx")
HttpRequest request = HttpRequest.post("http://192.168.0.251/yhbcp-engine_gov/rest/cjrfl_report_ffhzxx")
.contentType("application/x-www-form-urlencoded")
.form("access_key", "mzb_gx_450000")
.form("format", "json")
......@@ -193,7 +195,7 @@ public class DisabledService {
Fdx06Vo build = Fdx06Vo.builder()
.axcp0002(fdx06.getAxcp0002())
.axcp0006(fdx06.getAxcp0006())
.agax0823(fdx06.getAgax0823() != null ? DateUtil.format(fdx06.getAgax0823(), DatePattern.NORM_DATE_PATTERN) : "")
.afdx0823(fdx06.getAfdx0823() != null ? DateUtil.format(fdx06.getAfdx0823(), DatePattern.NORM_DATE_PATTERN) : "")
.axcp0008(fdx06.getAxcp0008())
.axcp0005(fdx06.getAxcp0005())
.afdp0505(fdx06.getAfdp0505())
......@@ -241,7 +243,7 @@ public class DisabledService {
.datatime(fdx06.getDatatime() != null ? DateUtil.format(fdx06.getDatatime(), DatePattern.NORM_DATETIME_PATTERN) : "")
.areacode(fdx06.getAreacode())
.build();
HttpRequest request = HttpRequest.post("https://zwxt.mca.gov.cn/yhbcp-engine_gov/rest/cjrfl_report_lsxx")
HttpRequest request = HttpRequest.post("http://192.168.0.251/yhbcp-engine_gov/rest/cjrfl_report_lsxx")
.contentType("application/x-www-form-urlencoded")
.form("access_key", "mzb_gx_450000")
.form("format", "json")
......@@ -294,7 +296,7 @@ public class DisabledService {
.areacode(fdx05.getAreacode())
.build();
HttpRequest request = HttpRequest.post("https://zwxt.mca.gov.cn/yhbcp-engine_gov/rest/cjrfl_report_zjryxx")
HttpRequest request = HttpRequest.post("http://192.168.0.251/yhbcp-engine_gov/rest/cjrfl_report_zjryxx")
.contentType("application/x-www-form-urlencoded")
.form("access_key", "mzb_gx_450000")
.form("format", "json")
......@@ -347,7 +349,7 @@ public class DisabledService {
.datatime(fdx04.getDatatime() != null ? DateUtil.format(fdx04.getDatatime(), DatePattern.NORM_DATETIME_PATTERN) : "")
.areacode(fdx04.getAreacode())
.build();
HttpRequest request = HttpRequest.post("https://zwxt.mca.gov.cn/yhbcp-engine_gov/rest/cjrfl_report_bfryxx")
HttpRequest request = HttpRequest.post("http://192.168.0.251/yhbcp-engine_gov/rest/cjrfl_report_bfryxx")
.contentType("application/x-www-form-urlencoded")
.form("access_key", "mzb_gx_450000")
.form("format", "json")
......@@ -396,7 +398,7 @@ public class DisabledService {
.areacode(fdx03.getAreacode())
.build();
HttpRequest request = HttpRequest.post("https://zwxt.mca.gov.cn/yhbcp-engine_gov/rest/cjrfl_report_tfryxx")
HttpRequest request = HttpRequest.post("http://192.168.0.251/yhbcp-engine_gov/rest/cjrfl_report_tfryxx")
.contentType("application/x-www-form-urlencoded")
.form("access_key", "mzb_gx_450000")
.form("format", "json")
......@@ -472,7 +474,7 @@ public class DisabledService {
.areacode(fdx02.getAreacode())
.build();
HttpRequest request = HttpRequest.post("https://zwxt.mca.gov.cn/yhbcp-engine_gov/rest/cjrfl_report_xzryxx")
HttpRequest request = HttpRequest.post("http://192.168.0.251/yhbcp-engine_gov/rest/cjrfl_report_xzryxx")
.contentType("application/x-www-form-urlencoded")
.form("access_key", "mzb_gx_450000")
.form("format", "json")
......@@ -549,7 +551,7 @@ public class DisabledService {
.areacode(fdx01.getAreacode())
.build();
HttpRequest request = HttpRequest.post("https://zwxt.mca.gov.cn/yhbcp-engine_gov/rest/cjrfl_report_zcryxx")
HttpRequest request = HttpRequest.post("http://192.168.0.251/yhbcp-engine_gov/rest/cjrfl_report_zcryxx")
.contentType("application/x-www-form-urlencoded")
.form("access_key", "mzb_gx_450000")
.form("format", "json")
......
......@@ -30,7 +30,7 @@ public class Fdx06Vo {
* 残疾人出生日期
*/
@ApiModelProperty("残疾人出生日期")
private String agax0823;
private String afdx0823;
/**
* 民族
......
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