/* Options: Date: 2025-12-06 06:54:01 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: MallUpdateOtherServiceRequest.* //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/update_other_service", Verbs="POST") public static class MallUpdateOtherServiceRequest implements IReturn, IPost, IHasMallOtherServiceId { public Long mallOtherServiceId = null; public String floor = null; public String serviceName = null; public Long getMallOtherServiceId() { return mallOtherServiceId; } public MallUpdateOtherServiceRequest setMallOtherServiceId(Long value) { this.mallOtherServiceId = value; return this; } public String getFloor() { return floor; } public MallUpdateOtherServiceRequest setFloor(String value) { this.floor = value; return this; } public String getServiceName() { return serviceName; } public MallUpdateOtherServiceRequest setServiceName(String value) { this.serviceName = value; return this; } private static Object responseType = MallUpdateOtherServiceResponse.class; public Object getResponseType() { return responseType; } } public static class MallUpdateOtherServiceResponse { public MallOtherServiceDto updated = null; public MallOtherServiceDto getUpdated() { return updated; } public MallUpdateOtherServiceResponse setUpdated(MallOtherServiceDto value) { this.updated = value; return this; } } public static interface IHasMallOtherServiceId { public Long mallOtherServiceId = 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; } } }