|
|
|
@ -33,13 +33,17 @@ public class BfCascadeDetail extends BaseBean {
|
|
|
|
|
@Column(name = "CASCADE_ID")
|
|
|
|
|
@ApiParam(value = "级联ID", example = "-1")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long cascade_id;
|
|
|
|
|
private Long cascadeId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ELEMENT_ID")
|
|
|
|
|
@ApiParam(value = "对象元素ID", example = "-1")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long elementId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "DETAIL_LABEL_TEXT")
|
|
|
|
|
@ApiParam(value = "提示信息")
|
|
|
|
|
private String detailLabelText;
|
|
|
|
|
|
|
|
|
|
@Column(name="ELEMENT_NAME")
|
|
|
|
|
@ApiParam(value ="元素名称")
|
|
|
|
|
private String elementName;
|
|
|
|
@ -51,7 +55,7 @@ public class BfCascadeDetail extends BaseBean {
|
|
|
|
|
@Column(name = "PARENT_ID")
|
|
|
|
|
@ApiParam(value = "父级ID", example = "-1")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long parent_id;
|
|
|
|
|
private Long parentId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ELEMENT_PROPERTY_VALUE_ID")
|
|
|
|
|
@ApiParam(value = "对象属性-元素属性ID", example = "-1")
|
|
|
|
|