Untitled

 avatar
unknown
plain_text
5 months ago
990 B
2
Indexable
package com.jnj.mdm.beans;


public class ProductCategoryBean {
	
	private Integer mdmId;
	private String prodCatGrp;
	private Integer categoryId;
	private String taSubType;
	public ProductCategoryBean(String prodCatGrp, Integer mdmId, Integer categoryId,
			String taSubType) {
		super();
		this.prodCatGrp = prodCatGrp;
		this.mdmId = mdmId;
		this.categoryId = categoryId;
		this.taSubType = taSubType;
	}
	public String getProdCatGrp() {
		return prodCatGrp;
	}
	public void setProdCatGrp(String prodCatGrp) {
		this.prodCatGrp = prodCatGrp;
	}
	public Integer getMdmId() {
		return mdmId;
	}
	public void setMdmId(Integer mdmId) {
		this.mdmId = mdmId;
	}
	public Integer getCategoryId() {
		return categoryId;
	}
	public void setCategoryId(Integer categoryId) {
		this.categoryId = categoryId;
	}
	public String getTaSubType() {
		return taSubType;
	}
	public void setTaSubType(String taSubType) {
		this.taSubType = taSubType;
	}
	
	
	
}
Editor is loading...
Leave a Comment