64 lines
1.6 KiB
Java
64 lines
1.6 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 StatusKontras
|
|
*
|
|
* @author Generator
|
|
*/
|
|
//@Entity
|
|
//@Table(name = "StatusKontras_M")
|
|
public class StatusKontrasVO extends BaseMasterVO {
|
|
@Caption(value="Kode Status Kontras")
|
|
private Byte kdStatusKontras;
|
|
|
|
public void setKdStatusKontras(Byte kdStatusKontras) {
|
|
this.kdStatusKontras = kdStatusKontras;
|
|
}
|
|
|
|
@Column(name = "KdStatusKontras", nullable = false )
|
|
public Byte getKdStatusKontras(){
|
|
return this.kdStatusKontras;
|
|
}
|
|
|
|
@Caption(value="QStatus Kontras")
|
|
private Byte qStatusKontras;
|
|
|
|
public void setqStatusKontras(Byte qStatusKontras) {
|
|
this.qStatusKontras = qStatusKontras;
|
|
}
|
|
|
|
@Column(name = "QStatusKontras", nullable = false )
|
|
public Byte getqStatusKontras(){
|
|
return this.qStatusKontras;
|
|
}
|
|
|
|
@Caption(value="Status Kontras")
|
|
private String statusKontras;
|
|
|
|
public void setStatusKontras(String statusKontras) {
|
|
this.statusKontras = statusKontras;
|
|
}
|
|
|
|
@Column(name = "StatusKontras", nullable = false , length = 20)
|
|
public String getStatusKontras(){
|
|
return this.statusKontras;
|
|
}
|
|
|
|
|
|
}
|
|
|