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

org.shaneking.sql.entity.SKRefAdtVerFullEntity Maven / Gradle / Ivy

There is a newer version: 0.15.1
Show newest version
package org.shaneking.sql.entity;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;

import javax.persistence.Column;

/**
 * Just reference, used for upload file
 */
@Accessors(chain = true)
@ToString
public abstract class SKRefAdtVerFullEntity extends SKIdAdtVerFullEntity {
  @Column(length = 40, columnDefinition = "COMMENT 'Relation unique flag'")
  @Getter
  @Setter
  private String refId;

  @Column(length = 40, columnDefinition = "COMMENT 'Relation type'")
  @Getter
  @Setter
  private String refType;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy