package org.whole.lang.sql.model; /** * @generator Whole */ public interface TinyIntValue extends ISQLEntity, SQLExpression { public byte getValue(); public void setValue(byte value); }