/* Options: Date: 2026-04-17 20:19:07 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qlcn-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateProviderRequest.* //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="/provider/{Id}", Verbs="PUT") public static class UpdateProviderRequest implements IReturn { public Integer id = null; public String name = null; public String taxCode = null; public String address = null; public String email = null; public String phone = null; public String telephone = null; public String phoneNumber = null; public String mst = null; public String bankAccount = null; public String bankName = null; public String additionalInfo = null; public Integer providerType = null; public Integer getId() { return id; } public UpdateProviderRequest setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public UpdateProviderRequest setName(String value) { this.name = value; return this; } public String getTaxCode() { return taxCode; } public UpdateProviderRequest setTaxCode(String value) { this.taxCode = value; return this; } public String getAddress() { return address; } public UpdateProviderRequest setAddress(String value) { this.address = value; return this; } public String getEmail() { return email; } public UpdateProviderRequest setEmail(String value) { this.email = value; return this; } public String getPhone() { return phone; } public UpdateProviderRequest setPhone(String value) { this.phone = value; return this; } public String getTelephone() { return telephone; } public UpdateProviderRequest setTelephone(String value) { this.telephone = value; return this; } public String getPhoneNumber() { return phoneNumber; } public UpdateProviderRequest setPhoneNumber(String value) { this.phoneNumber = value; return this; } public String getMst() { return mst; } public UpdateProviderRequest setMst(String value) { this.mst = value; return this; } public String getBankAccount() { return bankAccount; } public UpdateProviderRequest setBankAccount(String value) { this.bankAccount = value; return this; } public String getBankName() { return bankName; } public UpdateProviderRequest setBankName(String value) { this.bankName = value; return this; } public String getAdditionalInfo() { return additionalInfo; } public UpdateProviderRequest setAdditionalInfo(String value) { this.additionalInfo = value; return this; } public Integer getProviderType() { return providerType; } public UpdateProviderRequest setProviderType(Integer value) { this.providerType = value; return this; } private static Object responseType = Provider.class; public Object getResponseType() { return responseType; } } public static class Provider { public Integer id = null; public String name = null; public String taxCode = null; public String address = null; public String email = null; public String phone = null; public String bankAccount = null; public String bankName = null; public String additionalInfo = null; public Integer providerType = null; public Date createdAt = null; public Integer createdBy = null; public Integer getId() { return id; } public Provider setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public Provider setName(String value) { this.name = value; return this; } public String getTaxCode() { return taxCode; } public Provider setTaxCode(String value) { this.taxCode = value; return this; } public String getAddress() { return address; } public Provider setAddress(String value) { this.address = value; return this; } public String getEmail() { return email; } public Provider setEmail(String value) { this.email = value; return this; } public String getPhone() { return phone; } public Provider setPhone(String value) { this.phone = value; return this; } public String getBankAccount() { return bankAccount; } public Provider setBankAccount(String value) { this.bankAccount = value; return this; } public String getBankName() { return bankName; } public Provider setBankName(String value) { this.bankName = value; return this; } public String getAdditionalInfo() { return additionalInfo; } public Provider setAdditionalInfo(String value) { this.additionalInfo = value; return this; } public Integer getProviderType() { return providerType; } public Provider setProviderType(Integer value) { this.providerType = value; return this; } public Date getCreatedAt() { return createdAt; } public Provider setCreatedAt(Date value) { this.createdAt = value; return this; } public Integer getCreatedBy() { return createdBy; } public Provider setCreatedBy(Integer value) { this.createdBy = value; return this; } } }