88e030b7
王彪总
init project
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.java110.vo.api.machineAuth;
import com.java110.vo.MorePageVo;
import java.io.Serializable;
import java.util.List;
public class ApiMachineAuthVo extends MorePageVo implements Serializable {
List<ApiMachineAuthDataVo> machineAuths;
public List<ApiMachineAuthDataVo> getMachineAuths() {
return machineAuths;
}
public void setMachineAuths(List<ApiMachineAuthDataVo> machineAuths) {
this.machineAuths = machineAuths;
}
}
|