31 lines
609 B
Java
31 lines
609 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class KelasVO extends BaseMasterVO {
|
|
@Caption(value = "Object Kelas")
|
|
private KelasVO kelas;
|
|
|
|
private Integer kelasId;
|
|
|
|
@Caption(value = "Object KelasVO Head")
|
|
private KelasVO kelasHead;
|
|
|
|
private Integer kelasHeadId;
|
|
|
|
@Caption(value = "Nama Kelas")
|
|
private String namaKelas;
|
|
|
|
@Caption(value = "No Urut")
|
|
private Byte noUrut;
|
|
|
|
@Caption(value = "QKelas")
|
|
private Byte qKelas;
|
|
}
|