package pwc.taxtech.atms.dto.user; /** * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\UserAndUserRoleSaveDto.cs */ public class UpdateParam { 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; } }