forked from wuguolin/smartbi2
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
572 B
Java
22 lines
572 B
Java
|
4 years ago
|
package com.ipsos.base.domain;
|
||
|
5 years ago
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
|
||
|
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class PanelViewLinkageField implements Serializable {
|
||
|
|
@ApiModelProperty("ID")
|
||
|
|
private String id;
|
||
|
|
@ApiModelProperty("联动ID")
|
||
|
|
private String linkageId;
|
||
|
|
@ApiModelProperty("源字段")
|
||
|
|
private String sourceField;
|
||
|
|
@ApiModelProperty("目标字段")
|
||
|
|
private String targetField;
|
||
|
|
@ApiModelProperty("更新时间")
|
||
|
|
private Long updateTime;
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
}
|