Untitled

 avatar
wyc1230
plain_text
11 days ago
392 B
7
Indexable
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