liyong
3 天以前 4635770544e2d57416ad88a8983ee293919f5fec
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package com.ruoyi.approve.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 报销单明细表
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-05-21 09:56:38
 */
@Getter
@Setter
@ToString
@TableName("fin_reimbursement_detail")
@ApiModel(value = "FinReimbursementDetail对象", description = "报销单明细表")
public class FinReimbursementDetail implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @Schema(description = "主键ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 报销单ID,对应 fin_reimbursement.id
     */
    @Schema(description = "报销单ID,对应 fin_reimbursement.id")
    private Long reimbursementId;
 
    /**
     * 明细行号
     */
    @Schema(description = "明细行号")
    private Integer rowNo;
 
    /**
     * 发票日期
     */
    @Schema(description = "发票日期")
    private LocalDate invoiceDate;
 
    /**
     * 费用科目
     */
    @Schema(description = "费用科目")
    private String expenseCategory;
 
    /**
     * 金额
     */
    @Schema(description = "金额")
    private BigDecimal amount;
 
    /**
     * 描述
     */
    @Schema(description = "描述")
    private String description;
 
    /**
     * 发票号码
     */
    @Schema(description = "发票号码")
    private String invoiceNo;
 
    /**
     * 发票类型
     */
    @Schema(description = "发票类型")
    private String invoiceType;
 
    /**
     * 票面金额
     */
    @Schema(description = "票面金额")
    private BigDecimal invoiceAmount;
 
    /**
     * 税率
     */
    @Schema(description = "税率")
    private BigDecimal taxRate;
 
    /**
     * 税额
     */
    @Schema(description = "税额")
    private BigDecimal taxAmount;
 
    /**
     * 备注
     */
    @Schema(description = "备注")
    private String remark;
 
    /**
     * 租户ID
     */
    @Schema(description = "租户ID")
    private Long tenantId;
 
    /**
     * 创建人
     */
    @Schema(description = "创建人")
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
 
    /**
     * 创建时间
     */
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    /**
     * 更新人
     */
    @Schema(description = "更新人")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Long updateUser;
 
    /**
     * 更新时间
     */
    @Schema(description = "更新时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    /**
     * 归属部门ID
     */
    @Schema(description = "归属部门ID")
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
 
    /**
     * 逻辑删除:0-否,1-是
     */
    @Schema(description = "逻辑删除:0-否,1-是")
    private Byte deleted;
}