| | |
| | | |
| | | private String recordId; //档案号 |
| | | private byte[] imgr; //条形码 |
| | | |
| | | public byte[] getSedcode() { |
| | | return sedcode; |
| | | } |
| | | |
| | | public void setSedcode(byte[] sedcode) { |
| | | this.sedcode = sedcode; |
| | | } |
| | | |
| | | private byte[] sedcode; //二维码 |
| | | public ExcelExp(String fileName, List dataset, Class clazz) { |
| | | this.fileName = fileName; |
| | | this.dataset = dataset; |
| | | this.clazz = clazz; |
| | | } |
| | | |
| | | public ExcelExp(String fileName, List dataset, String recordId, byte[] imgr,Class clazz) { |
| | | public ExcelExp(String fileName, List dataset, String recordId, byte[] imgr, Class clazz) { |
| | | |
| | | this.fileName = fileName; |
| | | this.dataset = dataset; |
| | |
| | | this.imgr = imgr; |
| | | } |
| | | |
| | | public ExcelExp(String fileName, List dataset, String recordId, byte[] imgr,byte[] sedcode, Class clazz) { |
| | | |
| | | this.fileName = fileName; |
| | | this.dataset = dataset; |
| | | this.clazz = clazz; |
| | | this.recordId = recordId; |
| | | this.imgr = imgr; |
| | | this.sedcode = sedcode; |
| | | } |
| | | |
| | | public String getFileName() { |
| | | return fileName; |
| | | } |