Commit 106d0f45 authored by yangyang's avatar yangyang

Merge remote-tracking branch 'origin/develop_tzs_register' into develop_tzs_register

parents ac9e5fbd 5e76a4e8
package com.yeejoin.amos.boot.module.jg.api.dto; package com.yeejoin.amos.boot.module.jg.api.dto;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import com.yeejoin.amos.boot.biz.common.dto.BaseDto; import com.yeejoin.amos.boot.biz.common.dto.BaseDto;
import lombok.Data; import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import java.util.Date; import java.util.Date;
/** /**
...@@ -15,7 +17,7 @@ import java.util.Date; ...@@ -15,7 +17,7 @@ import java.util.Date;
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@ApiModel(value="JgTransferNoticeDto", description="移装造告知") @ApiModel(value = "JgTransferNoticeDto", description = "移装造告知")
public class JgTransferNoticeDto extends BaseDto { public class JgTransferNoticeDto extends BaseDto {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
...@@ -135,4 +137,7 @@ public class JgTransferNoticeDto extends BaseDto { ...@@ -135,4 +137,7 @@ public class JgTransferNoticeDto extends BaseDto {
@ApiModelProperty(value = "接收机构机构代码") @ApiModelProperty(value = "接收机构机构代码")
private String receiveOrgCode; private String receiveOrgCode;
@ApiModelProperty(value = "是否西咸")
private String isXixian;
} }
...@@ -250,4 +250,9 @@ public class JgTransferNotice extends BaseEntity { ...@@ -250,4 +250,9 @@ public class JgTransferNotice extends BaseEntity {
@TableField("receive_org_code") @TableField("receive_org_code")
private String receiveOrgCode; private String receiveOrgCode;
/**
* 是否西咸
*/
@TableField("is_xixian")
private String isXixian;
} }
...@@ -184,6 +184,8 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN ...@@ -184,6 +184,8 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
dto.setBusinessKey("1"); dto.setBusinessKey("1");
try { try {
ajaxResult = Workflow.taskClient.startByVariable(dto); ajaxResult = Workflow.taskClient.startByVariable(dto);
String instanceId = ((Map) ajaxResult.get("data")).get("id").toString();
noticeDto.setInstanceId(instanceId);
} catch (Exception e) { } catch (Exception e) {
log.error("提交失败:{}", e); log.error("提交失败:{}", e);
} }
......
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