com.clougence.cloudcanal.sdk.api.model.CustomField Maven / Gradle / Ivy
package com.clougence.cloudcanal.sdk.api.model;
import lombok.Builder;
import lombok.Data;
/**
* //todo later to add type or other header info here
*
* @author wanshao create time is 2021/8/18
**/
@Data
@Builder
public class CustomField {
/**
* If record action is update, then value is updated value. If record action is delete, then value is
*/
private Object value;
/**
*
* Pay attention that value is reference, do not modify it in custom code after field is built
*
*/
public CustomField(Object immutableValue){
this.value = immutableValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy