elkers
7 天以前 256851a621c1f71eaecdfdcb7ef3c3e4fdce21c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.nanjing.water.entity.request;
 
import java.util.List;
 
public class ReqListStatus {
    /**
     * 状态列表
     */
    private List<Integer> listStatus;
 
    public List<Integer> getListStatus() {
        return listStatus;
    }
 
    public void setListStatus(List<Integer> listStatus) {
        this.listStatus = listStatus;
    }
}