001 002package com.pax.dal.entity; 003 004public class Tr34OutBlock { 005 /** 006 * <div class="zh"> The output data </div> <div class="en"> The output data </div> 007 */ 008 public byte[] outBlock; 009 010 /** 011 * <div class="zh"> The output length of DataOut </div> <div class="en"> The output length of DataOut </div> 012 */ 013 public int[] outputLen; 014 015 public Tr34OutBlock() { 016 this.outBlock = new byte[0]; 017 this.outputLen = new int[0]; 018 } 019 020 public Tr34OutBlock(byte[] outBlock, int[] outputLen) { 021 this.outBlock = outBlock; 022 this.outputLen = outputLen; 023 } 024 025 026}