Salman Manoe 2135d3b921 Clean code
Pembuatan service duplikat pelayanan saat split kuantitas diskon paket
2023-08-24 17:53:24 +07:00

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;
}