Commit db85d1a0 authored by suhuiguang's avatar suhuiguang

feat(jg): 压力管道后续业务

1.启用停用、注销报废增加装置id
parent 43ac8618
......@@ -131,4 +131,7 @@ public class JgEnableDisableDto extends BaseDto {
@ApiModelProperty(value = "使用登记证编号,多个逗号分割(冗余前端检索使用)")
private String useRegistrationCode;
@ApiModelProperty(value = "工程装置id")
private String projectContraptionId;
}
......@@ -147,4 +147,7 @@ public class JgScrapCancelDto extends BaseDto {
@ApiModelProperty(value = "创建人")
private String createUserName;
@ApiModelProperty(value = "工程装置id")
private String projectContraptionId;
}
......@@ -193,4 +193,11 @@ public class JgEnableDisable extends BaseEntity {
private String useRegistrationCode;
/**
* 工程装置id
*/
@TableField("project_contraption_id")
private String projectContraptionId;
}
......@@ -190,4 +190,10 @@ public class JgScrapCancel extends BaseEntity {
@TableField("create_user_name")
private String createUserName;
/**
* 工程装置id
*/
@TableField("project_contraption_id")
private String projectContraptionId;
}
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