22 lines
373 B
Java
22 lines
373 B
Java
package com.jasamedika.medifirst2000.vo;
|
|
|
|
import com.jasamedika.medifirst2000.base.vo.BaseMasterVO;
|
|
import com.jasamedika.medifirst2000.helper.Caption;
|
|
public class KondisiBarangVO extends BaseMasterVO {
|
|
|
|
|
|
@Caption(value = "Name")
|
|
private String name;
|
|
|
|
public void setName(String name)
|
|
{
|
|
this.name = name;
|
|
}
|
|
public String getName()
|
|
{
|
|
return this.name;
|
|
}
|
|
|
|
|
|
|
|
} |