wujianwei
2026-03-20 1e89b00b0919a19504f32b56fb1ef80298799ec4
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
package com.ruoyi.cwgl.domain;
 
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;
/**
 * 资金流水日志对象 fund_flow_log
 *
 * @author ruoyi
 * @date 2026-01-14
 */
@Data
public class FundFlowLog{
 
 
    /** 主键 */
        @TableField("id")
    private Integer id;
 
 
    /** 资金流水id */
    @Excel(name = "资金流水id")
 
        @TableField("flow_id")
    private Integer flowId;
 
 
    /** 创建者 */
        @TableField("create_by")
    private String createBy;
 
 
    /** 创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")        @TableField("create_time")
    private Date createTime;
 
 
    /** 操作说明 */
    @Excel(name = "操作说明")
 
        @TableField("operation")
    private String operation;
 
 
}