Untitled
public class ZoneTypeAuthorityDTO { private String zoneTypeName = null; private Boolean usable = null; private Long id = null; } public class AuthorityDTO { private List<ZoneTypeAuthorityDTO> zoneTypeList = new ArrayList<>(); private String userLoginId = null; private List<ProcessPathAuthorityDTO> processPathList = new ArrayList<>(); private Long centerId = null; }
Leave a Comment