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

com.salesmanager.shop.model.entity.UniqueEntity Maven / Gradle / Ivy

The newest version!
package com.salesmanager.shop.model.entity;

import java.io.Serializable;
import javax.validation.constraints.NotNull;

public class UniqueEntity implements Serializable {
  
  /**
   * 
   */
  private static final long serialVersionUID = 1L;
  @NotNull
  private String unique;
  @NotNull
  private String merchant;

  public String getUnique() {
    return unique;
  }

  public void setUnique(String unique) {
    this.unique = unique;
  }

  public String getMerchant() {
    return merchant;
  }

  public void setMerchant(String merchant) {
    this.merchant = merchant;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy