Helius
2021-06-29 5252d1396e21a16774be699a5ba1c8d39c14a22e
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
package com.xzx.gc.entity;
 
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.xzx.gc.util.ValidateConfig;
import lombok.Data;
 
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.NotNull;
import java.util.Date;
 
 
@Table(name="core_audit")
@Data
public class CoreAudit extends BaseEntity  {
    @Id
    @NotNull(message = "ID不能为空", groups = ValidateConfig.UPDATE.class)
    private Long id;
    //删除标识
    @JsonIgnore
    private Integer delFlag;
    //创建时间
    private Integer success ;
    private String functionCode ;
    private String functionName ;
    private String ip ;
    private String message ;
    private String userName ;
    private Long userId ;
    private Date createTime;
    
    public CoreAudit() {
    }
}