/* Options: Date: 2025-12-06 13:03:52 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: UpdateCategoryOrderListRequest.* //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="/category/update-order-list", Verbs="POST") public static class UpdateCategoryOrderListRequest implements IReturn { public CategoryTypes type = null; public ArrayList orderList = null; public CategoryTypes getType() { return type; } public UpdateCategoryOrderListRequest setType(CategoryTypes value) { this.type = value; return this; } public ArrayList getOrderList() { return orderList; } public UpdateCategoryOrderListRequest setOrderList(ArrayList value) { this.orderList = value; return this; } private static Object responseType = CreateCategoryResponse.class; public Object getResponseType() { return responseType; } } public static class CreateCategoryResponse implements IResponseRequest { public Long id = null; public Integer code = null; public String message = null; public Long getId() { return id; } public CreateCategoryResponse setId(Long value) { this.id = value; return this; } public Integer getCode() { return code; } public CreateCategoryResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public CreateCategoryResponse setMessage(String value) { this.message = value; return this; } } public static enum CategoryTypes { Department, PartyGroup, DocGroup, DocType, IssuingAgency, Status, Subjects, Workflow; } public static class CategoriesOrderList { public Integer id = null; public Integer sortOrder = null; public Integer getId() { return id; } public CategoriesOrderList setId(Integer value) { this.id = value; return this; } public Integer getSortOrder() { return sortOrder; } public CategoriesOrderList setSortOrder(Integer value) { this.sortOrder = value; return this; } } public static interface IResponseRequest { public Integer code = null; public String message = null; } }