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

com.quamto.jira.data.time.entity.UserCostsHistoryEntity 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 UserCostsHistoryEntity extends BaseEntity {

    private String idUser = null;
    private Long idOwner = null;
    private Double hourCost = null;
    private Timestamp fromDate = null;
    private Timestamp untilDate = 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 fromDate
     */
    public Timestamp getFromDate() {
        return fromDate;
    }
    /**
     * @param fromDate the name to set
     */
    public void setFromDate(Timestamp fromDate) {
        this.fromDate = fromDate;
    }

    /**
     * @return the untilDate
     */
    public Timestamp getUntilDate() {
        return untilDate;
    }
    /**
     * @param untilDate the name to set
     */
    public void setUntilDate(Timestamp untilDate) {
        this.untilDate = untilDate;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy