package pwc.taxtech.atms.dto.user; import com.fasterxml.jackson.annotation.JsonProperty; /** * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\UserAndUserRoleSaveDto.cs */ public class UpdateParam { @JsonProperty("userID") private String userId; private Integer updateType; public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public Integer getUpdateType() { return updateType; } public void setUpdateType(Integer updateType) { this.updateType = updateType; } }