/* Options: Date: 2025-12-06 06:24:10 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //GlobalNamespace: BusinessApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MallAddOtherServiceRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class BusinessApi { @Route(Path="/mall/add_other_service", Verbs="POST") public static class MallAddOtherServiceRequest implements IReturn, IPost, IHasMallId { public Long mallId = null; public String floor = null; public String serviceName = null; public Long getMallId() { return mallId; } public MallAddOtherServiceRequest setMallId(Long value) { this.mallId = value; return this; } public String getFloor() { return floor; } public MallAddOtherServiceRequest setFloor(String value) { this.floor = value; return this; } public String getServiceName() { return serviceName; } public MallAddOtherServiceRequest setServiceName(String value) { this.serviceName = value; return this; } private static Object responseType = MallAddOtherServiceResponse.class; public Object getResponseType() { return responseType; } } public static class MallAddOtherServiceResponse { public MallOtherServiceDto added = null; public MallOtherServiceDto getAdded() { return added; } public MallAddOtherServiceResponse setAdded(MallOtherServiceDto value) { this.added = value; return this; } } public static interface IHasMallId { public Long mallId = null; } public static class MallOtherServiceDto { public Long id = null; public String serviceName = null; public String floor = null; public Long getId() { return id; } public MallOtherServiceDto setId(Long value) { this.id = value; return this; } public String getServiceName() { return serviceName; } public MallOtherServiceDto setServiceName(String value) { this.serviceName = value; return this; } public String getFloor() { return floor; } public MallOtherServiceDto setFloor(String value) { this.floor = value; return this; } } }