20 lines
328 B
Java
20 lines
328 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class VariabelDVO extends BaseTransactionVO {
|
|
|
|
private VariabelVO variabel;
|
|
|
|
private String valueI;
|
|
|
|
private String valueII;
|
|
|
|
private String hasil;
|
|
|
|
}
|