package kr.wisestone.owl.web.condition;
|
|
import kr.wisestone.owl.util.ConvertUtil;
|
|
import java.util.Map;
|
|
public class CompanyFieldCategoryCondition {
|
private Long id;
|
private String typeCategory;
|
private String parentId;
|
private String useValue;
|
private String description;
|
|
private Long companyTypeId;
|
private Long parentSectorId;
|
private Long childSectorId;
|
private Long regionId;
|
private Long statusId;
|
private String statusName;
|
|
private Integer Page;
|
private Integer PageSize;
|
|
public static CompanyFieldCategoryCondition make(Map<String, Object> companyFieldCategoryCondition) {
|
return ConvertUtil.convertMapToClass(companyFieldCategoryCondition, CompanyFieldCategoryCondition.class);
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getTypeCategory() {
|
return typeCategory;
|
}
|
|
public void setTypeCategory(String typeCategory) {
|
this.typeCategory = typeCategory;
|
}
|
|
public String getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(String parentId) {
|
this.parentId = parentId;
|
}
|
|
public String getUseValue() {
|
return useValue;
|
}
|
|
public void setUseValue(String useValue) {
|
this.useValue = useValue;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public Integer getPage() {
|
return Page;
|
}
|
|
public void setPage(Integer page) {
|
Page = page;
|
}
|
|
public Integer getPageSize() {
|
return PageSize;
|
}
|
|
public void setPageSize(Integer pageSize) {
|
PageSize = pageSize;
|
}
|
|
public Long getCompanyTypeId() {
|
return companyTypeId;
|
}
|
|
public void setCompanyTypeId(Long companyTypeId) {
|
this.companyTypeId = companyTypeId;
|
}
|
|
public Long getParentSectorId() {
|
return parentSectorId;
|
}
|
|
public void setParentSectorId(Long parentSectorId) {
|
this.parentSectorId = parentSectorId;
|
}
|
|
public Long getChildSectorId() {
|
return childSectorId;
|
}
|
|
public void setChildSectorId(Long childSectorId) {
|
this.childSectorId = childSectorId;
|
}
|
|
public Long getRegionId() {
|
return regionId;
|
}
|
|
public void setRegionId(Long regionId) {
|
this.regionId = regionId;
|
}
|
|
public Long getStatusId() {
|
return statusId;
|
}
|
|
public void setStatusId(Long statusId) {
|
this.statusId = statusId;
|
}
|
|
public String getStatusName() {
|
return statusName;
|
}
|
|
public void setStatusName(String statusName) {
|
this.statusName = statusName;
|
}
|
}
|