wujianwei
6 天以前 849648e82e5dec96f9f30fcc9c9bd799268b1f4c
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
package com.ruoyi.cwgl.domain;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableField;
import java.util.Date;
import lombok.Data;
/**
 * 发票管理日志对象 invoice_manage_log
 *
 * @author ruoyi
 * @date 2026-01-05
 */
@Data
public class InvoiceManageLog{
 
 
    /** 日志ID */
        @TableField("id")
    private Integer id;
 
 
    /** 发票管理id */
    @Excel(name = "发票管理id")
 
        @TableField("invoice_manage_id")
    private Integer invoiceManageId;
 
 
    /** 操作人(创建人) */
    @Excel(name = "操作人", readConverterExp = "创=建人")
 
        @TableField("operator")
    private String operator;
 
 
    /** 操作时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd")
    @TableField("operation_time")
    private Date operationTime;
 
 
    /** 操作描述 */
    @Excel(name = "操作描述")
 
        @TableField("operation_desc")
    private String operationDesc;
 
 
    /** 记录创建时间 */
        @JsonFormat(pattern = "yyyy-MM-dd")
        @TableField("create_time")
    private Date createTime;
 
 
}