package com.gx.obe.struct.beans;

public class Td {
	
	private String colType;
	private String content;
	private int width;
	private boolean isNeedFill;
	
	public String getColType() {
		return colType;
	}
	
	public String getContent() {
		return content;
	}
	
	public int getWidth() {
		return width;
	}
	
	public void setColType(String colType) {
		this.colType = colType;
	}
	
	public void setContent(String content) {
		this.content = content;
	}
	
	public void setWidth(int width) {
		this.width = width;
	}

	public boolean isNeedFill() {
		return isNeedFill;
	}

	public void setIsNeedFill(boolean isNeedFill) {
		this.isNeedFill = isNeedFill;
	}

}