tj
2025-06-05 2d549a04870d1315868a7cf19952b64e8071e711
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
package com.cloudroam.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data;
 
import java.time.LocalDateTime;
import java.util.Date;
 
/**
 * @author 
 * 基础数据模型类
 */
@Data
public class BaseModelSringIdAuto {
 
    @TableId(type = IdType.INPUT)
    private String id;
 
//    @JsonIgnore
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;
 
//    @JsonIgnore
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime updateTime;
 
    @JsonIgnore
    private LocalDateTime deleteTime;
 
    @TableLogic
    @JsonIgnore
    private Integer isDeleted;
 
    /**
     * 创建人
     */
    private String createUserId;
 
    /**
     * 创建人姓名
     */
    private String createUserName;
 
    /**
     * 更新人id
     */
    private String updateUserId;
 
    /**
     * 更新人姓名
     */
    private String updateUserName;
 
 
    /**
     * 删除人
     */
    private String deleteUserId;
 
    /**
     * 删除人姓名
     */
    private String deleteUserName;
 
 
 
    public void create(String userId,String userName) {
        this.createUserId = userId;
        this.createUserName = userName;
        this.createTime = LocalDateTime.now();
        this.updateUserId = userId;
        this.updateUserName=userName;
        this.updateTime = LocalDateTime.now();
        this.isDeleted = 0;
    }
 
    public void create() {
        this.createTime = LocalDateTime.now();
        this.updateTime = LocalDateTime.now();
        this.isDeleted = 0;
    }
 
    public void update(String userId,String userName) {
        this.updateUserId = userId;
        this.updateUserName=userName;
        this.updateTime = LocalDateTime.now();
    }
 
    public void update() {
        this.updateTime = LocalDateTime.now();
    }
 
    public void delete(String userId,String userName) {
        this.updateUserId = userId;
        this.updateUserName=userName;
        this.updateTime = LocalDateTime.now();
        this.deleteUserId = userId;
        this.deleteUserName=userName;
        this.deleteTime = LocalDateTime.now();
        this.isDeleted = 1;
    }
 
}