com.quamto.jira.data.time.entity.CurrencyEntity Maven / Gradle / Ivy
The newest version!
package com.quamto.jira.data.time.entity;
import com.quamto.entity.BaseEntity;
/**
* Created by QUAMTO-DEV3 on 08/08/2017.
* [email protected]
*/
public class CurrencyEntity extends BaseEntity {
private Long idCurrency = null;
private Long idOwner = null;
/**
* @return the idCurrency
*/
public Long getIdCurrency() {
return idCurrency;
}
/**
* @param idCurrency the name to set
*/
public void setIdCurrency(Long idCurrency) {
this.idCurrency = idCurrency;
}
/**
* @return the idOwner
*/
public Long getIdOwner() {
return idOwner;
}
/**
* @param idOwner the name to set
*/
public void setIdOwner(Long idOwner) {
this.idOwner = idOwner;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy