JSD-7339 开源任务材料
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
327 B

package com.fr.plugin.models;
import java.io.Serializable;
import java.util.List;
public class GetUserModel implements Serializable {
private List<UserModel> users;
public List<UserModel> getUsers() {
return users;
}
public void setUsers(List<UserModel> users) {
this.users = users;
}
}