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

com.alogient.cameleon.sdk.membership.dao.model.CustomuserfieldUservalue Maven / Gradle / Ivy

The newest version!
package com.alogient.cameleon.sdk.membership.dao.model;

import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;
import java.sql.Timestamp;

/**
 * User: J?r?me Mirc
 * Date: 23-Sep-2009
 * Time: 10:13:29 AM
 */
@Table(name = "CustomUserField_UserValue")
@Entity
public class CustomuserfieldUservalue {

    private CustomuserfieldUservaluePK pk;

    @EmbeddedId
    public CustomuserfieldUservaluePK getPk() {
        return pk;
    }

    public void setPk(CustomuserfieldUservaluePK pk) {
        this.pk = pk;
    }

    private String textvalue;

    @Column(name = "TextValue")
    @Basic
    public String getTextvalue() {
        return textvalue;
    }

    public void setTextvalue(String textvalue) {
        this.textvalue = textvalue;
    }

    private Timestamp datevalue;

    @Column(name = "DateValue")
    @Basic
    public Timestamp getDatevalue() {
        return datevalue;
    }

    public void setDatevalue(Timestamp datevalue) {
        this.datevalue = datevalue;
    }

    private Integer intvalue;

    @Column(name = "IntValue")
    @Basic
    public Integer getIntvalue() {
        return intvalue;
    }

    public void setIntvalue(Integer intvalue) {
        this.intvalue = intvalue;
    }

    private Double floatvalue;

    @Column(name = "FloatValue")
    @Basic
    public Double getFloatvalue() {
        return floatvalue;
    }

    public void setFloatvalue(Double floatvalue) {
        this.floatvalue = floatvalue;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy