/* Options: Date: 2025-12-06 13:01:52 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ReadAndImportDataApi.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/import-from-excel", Verbs="Post") public static class ReadAndImportDataApi implements IReturn { public IHttpFile dataFile = null; public Boolean isInternal = null; public IHttpFile getDataFile() { return dataFile; } public ReadAndImportDataApi setDataFile(IHttpFile value) { this.dataFile = value; return this; } public Boolean getIsInternal() { return isInternal; } public ReadAndImportDataApi setIsInternal(Boolean value) { this.isInternal = value; return this; } private static Object responseType = ReadExcelResponse.class; public Object getResponseType() { return responseType; } } public static class ReadExcelResponse { public ArrayList> rows = null; public BigDecimal maxColumnR = null; public ArrayList> getRows() { return rows; } public ReadExcelResponse setRows(ArrayList> value) { this.rows = value; return this; } public BigDecimal getMaxColumnR() { return maxColumnR; } public ReadExcelResponse setMaxColumnR(BigDecimal value) { this.maxColumnR = value; return this; } } public static interface IHttpFile { public String name = null; public String fileName = null; public Long contentLength = null; public String contentType = null; public InputStream inputStream = null; } }