Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package inventory;

import java.util.List;

public class InventoryHistoryItems {
        int page;
        long total;
        long records;
        List<InventoryHistory> rows;
        public int getPage() {
                return page;
        }
        public void setPage(int page) {
                this.page = page;
        }
        public long getTotal() {
                return total;
        }
        public void setTotal(long total) {
                this.total = total;
        }
        public long getRecords() {
                return records;
        }
        public void setRecords(long records) {
                this.records = records;
        }
        public List<InventoryHistory> getRows() {
                return rows;
        }
        public void setRows(List<InventoryHistory> rows) {
                this.rows = rows;
        }

}