/* Options: Date: 2026-09-01 03:42:49 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-stage.smartfarmertech.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RolesSystemFunctionsAutoQueryDelete.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class RolesSystemFunctionsAutoQueryDelete implements IReturnVoid, IDeleteDb { @DataMember(Order=1) public Long id = null; @DataMember(Order=5) public ResponseStatus responseStatus = null; public Long getId() { return id; } public RolesSystemFunctionsAutoQueryDelete setId(Long value) { this.id = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public RolesSystemFunctionsAutoQueryDelete setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class RolesSystemFunctions { @DataMember(Order=1) @Required() public Long id = null; @DataMember(Order=2) @Required() @References(Roles.class) public Long rolesId = null; @DataMember(Order=3) @Required() @References(SystemFunctions.class) public Long systemFunctionsId = null; public Long getId() { return id; } public RolesSystemFunctions setId(Long value) { this.id = value; return this; } public Long getRolesId() { return rolesId; } public RolesSystemFunctions setRolesId(Long value) { this.rolesId = value; return this; } public Long getSystemFunctionsId() { return systemFunctionsId; } public RolesSystemFunctions setSystemFunctionsId(Long value) { this.systemFunctionsId = value; return this; } } }