com.quamto.jira.data.time.entity.UserConfigurationEntity Maven / Gradle / Ivy
The newest version!
package com.quamto.jira.data.time.entity;
import com.quamto.entity.BaseEntity;
import java.sql.Timestamp;
/**
* Created by QUAMTO-DEV3 on 28/07/2017.
* [email protected]
*/
public class UserConfigurationEntity extends BaseEntity {
private String idUser = null;
private Long idOwner = null;
private Double hourCost = null;
private Timestamp createdFrom = null;
/**
* @return the idUser
*/
public String getIdUser() {
return idUser;
}
/**
* @param idUser the name to set
*/
public void setIdUser(String idUser) {
this.idUser = idUser;
}
/**
* @return the idOwner
*/
public Long getIdOwner() {
return idOwner;
}
/**
* @param idOwner the name to set
*/
public void setIdOwner(Long idOwner) {
this.idOwner = idOwner;
}
/**
* @return the hourCost
*/
public Double getHourCost() {
return hourCost;
}
/**
* @param hourCost the name to set
*/
public void setHourCost(Double hourCost) {
this.hourCost = hourCost;
}
/**
* @return the createdFrom
*/
public Timestamp getCreatedFrom() {
return createdFrom;
}
/**
* @param createdFrom the name to set
*/
public void setCreatedFrom(Timestamp createdFrom) {
this.createdFrom = createdFrom;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy