shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
36
37
38
39
40
41
42
43
package com.iplatform.base.pojo.log;
 
import com.walker.web.param.ParamRequest;
 
public class OperateLogParam extends ParamRequest {
 
    public String getTitile() {
        return titile;
    }
 
    public void setTitile(String titile) {
        this.titile = titile;
    }
 
    public String getOperName() {
        return operName;
    }
 
    public void setOperName(String operName) {
        this.operName = operName;
    }
 
    public Integer getBusinessType() {
        return businessType;
    }
 
    public void setBusinessType(Integer businessType) {
        this.businessType = businessType;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    private String titile;
    private String operName;
    private Integer businessType;
    private Integer status;
}