Salman Manoe 6a3f38fcb6 Update domain virtual object dan dto
Penerapan lombok dependency untuk mengurangi boilerplate
2025-03-03 11:39:50 +07:00

19 lines
436 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 GolonganDarahRhesusVO extends BaseMasterVO {
@Caption(value = "idGolDarahAndRhesus")
private String idGolDarahAndRhesus;
@Caption(value = "nameGolDarahAndRhesus")
private String nameGolDarahAndRhesus;
}