liding
2025-05-14 b10d9b8fcbe9eddeb881690bbeddafc7f786077f
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
package com.ruoyi.sales.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
@TableName("sales_ledger_file")
public class SalesLedgerFile {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 销售台账ID */
    private Long ledgerId;
 
    /** 文件名称 */
    private String name;
 
    /** 文件路径 */
    private String url;
 
    /** 创建时间 */
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    /** 更新时间 */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
}