Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current Restore this Version View Page History

« Previous Version 2 Current »

Aquí se mostrarán los esquemas que se han realizado.

Provider

public class Provider {

@Id

private String id; // Identificador unico

@Indexed(unique = true)

private String name;

private String logo;

private String description; // Opcional

private Integer popularity; // nivel de popularidad, donde 1 es el mas popular

private CustomizableAmount customizableAmount;

@Indexed 26

private Boolean active; // si el proveedor esta activo o no, solo se listaran los proveedores activos al usuario

private String type; // AGENCY o BUY SELL

private String termsConditions; // Opcional

private Date createdAt;

private Date updatedAt;

}

CustomizableAmount

Product