Jenkins自动合并

yun-zuoyi
jenkins 6 years ago
commit af860ff688

@ -38,6 +38,12 @@ public class ExportProject extends BaseAPS {
@FieldAnnotation(relation = "Link", notEmpty = true) @FieldAnnotation(relation = "Link", notEmpty = true)
private Long linkId; private Long linkId;
@ApiParam(value ="当前执行的明细序号")
private transient Integer curDetailNumber;
@ApiParam(value ="当前执行的明细名称")
private transient String curDetailName;
public DataLink getLink() { public DataLink getLink() {
return BeanRelation.get(this, EExportProject.Link); return BeanRelation.get(this, EExportProject.Link);
} }

@ -37,6 +37,12 @@ public class ImportProject extends BaseAPS {
@FieldAnnotation(relation = "Link", notEmpty = true) @FieldAnnotation(relation = "Link", notEmpty = true)
private Long linkId; private Long linkId;
@ApiParam(value ="当前执行的明细序号")
private transient Integer curDetailNumber;
@ApiParam(value ="当前执行的明细名称")
private transient String curDetailName;
public DataLink getLink() { public DataLink getLink() {
return BeanRelation.get(this, EImportProject.Link); return BeanRelation.get(this, EImportProject.Link);
} }

@ -12,5 +12,5 @@ import lombok.Data;
@Data @Data
public class RuleGroupProgress { public class RuleGroupProgress {
private String message; private String message;
private String progress; private Long progress;
} }

Loading…
Cancel
Save