package com.yihu.ehr.agModel.adapter; import com.yihu.ehr.util.validate.Required; import com.yihu.ehr.util.validate.Valid; /** * @author lincl * @version 1.0 * @created 2016.2.3 */ @Valid public class AdapterPlanModel { public Long id; public Long parentId; public String parentName; public String code; public String name; public String type; public String typeValue; public String version; public String versionName; public String org; public String orgValue; public String description; private int status; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getParentId() { return parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public String getParentName() { return parentName; } public void setParentName(String parentName) { this.parentName = parentName; } @Required(filedName = "代码") public String getCode() { return code; } public void setCode(String code) { this.code = code; } @Required(filedName = "名称") public String getName() { return name; } public void setName(String name) { this.name = name; } @Required(filedName = "方案类别") public String getType() { return type; } public void setType(String type) { this.type = type; } public String getTypeValue() { return typeValue; } public void setTypeValue(String typeValue) { this.typeValue = typeValue; } @Required(filedName = "标准版本") public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } @Required(filedName = "采集机构") public String getOrg() { return org; } public void setOrg(String org) { this.org = org; } public String getOrgValue() { return orgValue; } public void setOrgValue(String orgValue) { this.orgValue = orgValue; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public int getStatus() { return status; } public void setStatus(int status) { this.status = status; } public String getVersionName() { return versionName; } public void setVersionName(String versionName) { this.versionName = versionName; } }