/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.euroccp.tps.entities.mapping; import com.mysql.clusterj.annotation.Column; import com.mysql.clusterj.annotation.PersistenceCapable; import com.mysql.clusterj.annotation.PrimaryKey; import java.math.BigDecimal; /** * * @author Administrator */ @PersistenceCapable(table = "positions") public interface PositionsInterface { // // Fix trade record @PrimaryKey @Column(name = "id") int getId(); void setId(int id); @Column(name = "total") BigDecimal getTotal(); void setTotal(BigDecimal total); }