lius
2023-06-08 534aec7a687ceca8120ba798ad20d80d7058ffe6
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
package org.jeecg.common.api.dto;
 
import lombok.Data;
 
/**
 * @Author taoYan
 * @Date 2022/7/26 14:44
 **/
@Data
public class DataLogDTO {
 
    private String tableName;
 
    private String dataId;
 
    private String content;
 
    private String type;
 
    public DataLogDTO(){
 
    }
 
    public DataLogDTO(String tableName, String dataId, String content, String type) {
        this.tableName = tableName;
        this.dataId = dataId;
        this.content = content;
        this.type = type;
    }
 
    public DataLogDTO(String tableName, String dataId, String type) {
        this.tableName = tableName;
        this.dataId = dataId;
        this.type = type;
    }
}