24 lines
496 B
Java
24 lines
496 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
|
|
//@Entity
|
|
//@Table(name = "BundleSetAlat_M")
|
|
public class BundleSetAlatVO extends BaseMasterVO {
|
|
|
|
@Column(name = "Nama", nullable = true , length = 200)
|
|
@Caption(value="Nama")
|
|
private String nama;
|
|
|
|
public String getName() {
|
|
return nama;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.nama = name;
|
|
}
|
|
}
|