Commit ea4c8999 authored by litengwei's avatar litengwei

安装告知新增街道字段

parent 106d0f45
......@@ -217,4 +217,12 @@ public class JgInstallationNoticeDto extends BaseDto {
@ApiModelProperty(value = "设备注册代码")
private String equRegisterCode;
@ApiModelProperty(value = "设备使用地点-街道(镇)")
private String factoryUseSiteStreet;
@ApiModelProperty(value = "设备使用地点-街道(镇)")
private String streetName;
}
......@@ -353,5 +353,18 @@ public class JgInstallationNotice extends BaseEntity {
@TableField("equ_register_code")
private String equRegisterCode;
/**
* * 设备使用地点-街道(镇)
* */
@TableField(value ="\"factory_use_site_street\"")
private String factoryUseSiteStreet;
/**
* * 设备使用地点-街道(镇)-名称
* */
@TableField(value ="\"street_name\"")
private String streetName;
}
......@@ -68,7 +68,7 @@ import java.text.ParseException;
public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationNoticeDto,JgInstallationNotice,JgInstallationNoticeMapper> implements IJgInstallationNoticeService {
private static final String SUBMIT_TYPE_FLOW = "1";
private static final String PROCESS_DEFINITION_KEY = "installationNotification";
private static final String PROCESS_DEFINITION_KEY = "installationNotificationNew";
private static final String TABLE_PAGE_ID = "1734141426742095873";
......
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