All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.bingoohuang.sqltrigger.TriggerColumnInfo Maven / Gradle / Ivy

The newest version!
package com.github.bingoohuang.sqltrigger;

import lombok.Data;
import lombok.RequiredArgsConstructor;

@Data @RequiredArgsConstructor
public class TriggerColumnInfo {
    private final String name;
    private int varIndex;
    private ValueType valueType;
    private Object value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy