Blame view

src/test/java/com.huaheng.test/SaveParam.java 638 Bytes
lihailong authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.huaheng.test;

import org.apache.poi.ss.formula.functions.T;

import java.util.List;

public class SaveParam<T> {
    private String method;
    private String operate;
    private List<T> datas;

    public String getMethod() {
        return method;
    }

    public void setMethod(String method) {
        this.method = method;
    }

    public String getOperate() {
        return operate;
    }

    public void setOperate(String operate) {
        this.operate = operate;
    }

    public List<T> getDatas() {
        return datas;
    }

    public void setDatas(List<T> datas) {
        this.datas = datas;
    }
}