/* Options: Date: 2026-09-01 03:44:41 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: PlantingMonthsAutoQueryDelete.* //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 PlantingMonthsAutoQueryDelete implements IReturnVoid, IDeleteDb { @DataMember(Order=1) public Long id = null; @DataMember(Order=7) public ResponseStatus responseStatus = null; public Long getId() { return id; } public PlantingMonthsAutoQueryDelete setId(Long value) { this.id = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public PlantingMonthsAutoQueryDelete setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class PlantingMonths { @DataMember(Order=1) @Required() public Long id = null; @DataMember(Order=2) @References(Tenants.class) public Long tenantsId = null; @DataMember(Order=3) @Required() @References(Zones.class) public Long zonesId = null; @DataMember(Order=4) @Required() @References(Varieties.class) public Long varietiesId = null; @DataMember(Order=5) @Required() public Integer months = null; public Long getId() { return id; } public PlantingMonths setId(Long value) { this.id = value; return this; } public Long getTenantsId() { return tenantsId; } public PlantingMonths setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getZonesId() { return zonesId; } public PlantingMonths setZonesId(Long value) { this.zonesId = value; return this; } public Long getVarietiesId() { return varietiesId; } public PlantingMonths setVarietiesId(Long value) { this.varietiesId = value; return this; } public Integer getMonths() { return months; } public PlantingMonths setMonths(Integer value) { this.months = value; return this; } } }