2021-01-07 11:34:56 +07:00

64 lines
1.8 KiB
Java

package com.jasamedika.medifirst2000.vo;
import java.io.Serializable;
import javax.persistence.*;
import java.util.Date;
import org.hibernate.validator.constraints.NotEmpty;
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
import javax.validation.constraints.NotNull;
import org.hibernate.validator.constraints.Length;
import org.hibernate.validator.internal.util.logging.Messages;
import com.fasterxml.jackson.annotation.JsonManagedReference;
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
import com.jasamedika.medifirst2000.helper.Caption;
/**
* class JenisPelayananProfile
*
* @author Generator
*/
//@Entity
//@Table(name = "JenisPelayananProfile_M")
public class JenisPelayananProfileVO extends BaseMasterVO {
@Caption(value="Jenis Pelayanan Profile")
private String jenisPelayananProfile;
public void setJenisPelayananProfile(String jenisPelayananProfile) {
this.jenisPelayananProfile = jenisPelayananProfile;
}
@Column(name = "JenisPelayananProfile", nullable = false , length = 50)
public String getJenisPelayananProfile(){
return this.jenisPelayananProfile;
}
@Caption(value="Kode Jenis Pelayanan Profile")
private String kdJenisPelayananProfile;
public void setKdJenisPelayananProfile(String kdJenisPelayananProfile) {
this.kdJenisPelayananProfile = kdJenisPelayananProfile;
}
@Column(name = "KdJenisPelayananProfile", nullable = false , length = 1)
public String getKdJenisPelayananProfile(){
return this.kdJenisPelayananProfile;
}
@Caption(value="QJenis Pelayanan Profile")
private Byte qJenisPelayananProfile;
public void setqJenisPelayananProfile(Byte qJenisPelayananProfile) {
this.qJenisPelayananProfile = qJenisPelayananProfile;
}
@Column(name = "QJenisPelayananProfile", nullable = false )
public Byte getqJenisPelayananProfile(){
return this.qJenisPelayananProfile;
}
}