/* Options: Date: 2025-06-13 06:51:37 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetNewsRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/mobile/maps/news") public static class GetNewsRQ implements IReturn { public String Category = null; public Date Dateini = null; public Date Datefin = null; public String getCategory() { return Category; } public GetNewsRQ setCategory(String value) { this.Category = value; return this; } public Date getDateini() { return Dateini; } public GetNewsRQ setDateini(Date value) { this.Dateini = value; return this; } public Date getDatefin() { return Datefin; } public GetNewsRQ setDatefin(Date value) { this.Datefin = value; return this; } private static Object responseType = GetNewsRS.class; public Object getResponseType() { return responseType; } } public static class GetNewsRS { public String Code = null; public String ErrorMessage = null; public ArrayList Data = null; public String getCode() { return Code; } public GetNewsRS setCode(String value) { this.Code = value; return this; } public String getErrorMessage() { return ErrorMessage; } public GetNewsRS setErrorMessage(String value) { this.ErrorMessage = value; return this; } public ArrayList getData() { return Data; } public GetNewsRS setData(ArrayList value) { this.Data = value; return this; } } public static class NewsData { public Integer code = null; public Date datenews = null; public String category = null; public String title = null; public String intro = null; public String author = null; public String image = null; public String news = null; public Integer getCode() { return code; } public NewsData setCode(Integer value) { this.code = value; return this; } public Date getDatenews() { return datenews; } public NewsData setDatenews(Date value) { this.datenews = value; return this; } public String getCategory() { return category; } public NewsData setCategory(String value) { this.category = value; return this; } public String getTitle() { return title; } public NewsData setTitle(String value) { this.title = value; return this; } public String getIntro() { return intro; } public NewsData setIntro(String value) { this.intro = value; return this; } public String getAuthor() { return author; } public NewsData setAuthor(String value) { this.author = value; return this; } public String getImage() { return image; } public NewsData setImage(String value) { this.image = value; return this; } public String getNews() { return news; } public NewsData setNews(String value) { this.news = value; return this; } } }