24 lines
450 B
Java
24 lines
450 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseTransactionVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
/**
|
|
* @author salmanoe
|
|
* @since Jan 11, 2022
|
|
*/
|
|
@Getter
|
|
@Setter
|
|
public class MapFotoProfilPegawaiVO extends BaseTransactionVO {
|
|
|
|
@Caption(value = "Pegawai")
|
|
private PegawaiVO pegawai;
|
|
|
|
private Integer pegawaiId;
|
|
|
|
private String filePath;
|
|
|
|
}
|