/* Options: Date: 2026-02-10 07:38:14 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: WorkflowStatisticsRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/workflow/statistics", Verbs="GET") public static class WorkflowStatisticsRequest implements IReturn { private static Object responseType = WorkflowStatisticsResponse.class; public Object getResponseType() { return responseType; } } public static class WorkflowStatisticsResponse { public Integer code = null; public String message = null; public ArrayList data = null; public Integer getCode() { return code; } public WorkflowStatisticsResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public WorkflowStatisticsResponse setMessage(String value) { this.message = value; return this; } public ArrayList getData() { return data; } public WorkflowStatisticsResponse setData(ArrayList value) { this.data = value; return this; } } public static class LeftMenuItem { public Integer id = null; public String name = null; public Integer count = null; public Boolean isParty = null; public Integer level1ParentId = null; public Integer level2ParentId = null; public Integer level = null; public String type = null; public String key = null; @Ignore() public ArrayList children = null; public Integer getId() { return id; } public LeftMenuItem setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public LeftMenuItem setName(String value) { this.name = value; return this; } public Integer getCount() { return count; } public LeftMenuItem setCount(Integer value) { this.count = value; return this; } public Boolean getIsParty() { return isParty; } public LeftMenuItem setIsParty(Boolean value) { this.isParty = value; return this; } public Integer getLevel1ParentId() { return level1ParentId; } public LeftMenuItem setLevel1ParentId(Integer value) { this.level1ParentId = value; return this; } public Integer getLevel2ParentId() { return level2ParentId; } public LeftMenuItem setLevel2ParentId(Integer value) { this.level2ParentId = value; return this; } public Integer getLevel() { return level; } public LeftMenuItem setLevel(Integer value) { this.level = value; return this; } public String getType() { return type; } public LeftMenuItem setType(String value) { this.type = value; return this; } public String getKey() { return key; } public LeftMenuItem setKey(String value) { this.key = value; return this; } public ArrayList getChildren() { return children; } public LeftMenuItem setChildren(ArrayList value) { this.children = value; return this; } } }