/* Options: Date: 2026-06-24 16:46:18 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: GetStampClerkCandidatesRequest.* //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="/WorkflowStep/stamp-clerk-candidates", Verbs="Get") public static class GetStampClerkCandidatesRequest implements IReturn { public Integer stepId = null; public Integer getStepId() { return stepId; } public GetStampClerkCandidatesRequest setStepId(Integer value) { this.stepId = value; return this; } private static Object responseType = GetStampClerkCandidatesResponse.class; public Object getResponseType() { return responseType; } } public static class GetStampClerkCandidatesResponse implements IResponseRequest { public Integer code = null; public String message = null; public ArrayList data = null; public Integer getCode() { return code; } public GetStampClerkCandidatesResponse setCode(Integer value) { this.code = value; return this; } public String getMessage() { return message; } public GetStampClerkCandidatesResponse setMessage(String value) { this.message = value; return this; } public ArrayList getData() { return data; } public GetStampClerkCandidatesResponse setData(ArrayList value) { this.data = value; return this; } } public static interface IResponseRequest { public Integer code = null; public String message = null; } public static class StampClerkOption { public Integer id = null; public String fullName = null; public String departmentName = null; public Integer getId() { return id; } public StampClerkOption setId(Integer value) { this.id = value; return this; } public String getFullName() { return fullName; } public StampClerkOption setFullName(String value) { this.fullName = value; return this; } public String getDepartmentName() { return departmentName; } public StampClerkOption setDepartmentName(String value) { this.departmentName = value; return this; } } }