Commit 77e179e1 authored by suhuiguang's avatar suhuiguang

1.压力管道批量模式,使用登记开发提交

parent 1803ef05
......@@ -3650,6 +3650,7 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
re.put("installProvince", construction.getProvinceName());
re.put("installAddress", construction.getAddress());
re.put("installCity", construction.getCityName());
re.put("installIsXixian", construction.getIsXixian());
re.put("installCounty", construction.getCountyName());
re.put("uscUnitCreditCode", construction.getUscUnitCreditCode());
re.put("uscUnitName", construction.getUscUnitName());
......
......@@ -100,4 +100,6 @@ public class IdxBizJgProjectConstructionDto extends BaseDto {
@ApiModelProperty(value = "使用地点_街道")
private String streetName;
@ApiModelProperty(value = "是否西咸:0-否;1-是")
private String isXixian;
}
......@@ -169,4 +169,9 @@ public class IdxBizJgProjectConstruction extends TzsBaseEntity {
@TableField("\"STREET_NAME\"")
private String streetName;
/**
* 是否西咸:0-否;1-是
*/
@TableField("\"IS_XIXIAN\"")
private String isXixian;
}
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