2 天以前 a77decc3df26449414639082293e2ee6722e643c
src/main/java/com/ruoyi/sales/pojo/InvoiceLedgerFile.java
@@ -2,7 +2,7 @@
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
@@ -10,35 +10,41 @@
@Data
public class InvoiceLedgerFile {
    @ApiModelProperty(value = "文件名称")
    private String fileName;
    @Schema(description = "文件ID")
    private Long id;
    @ApiModelProperty(value = "文件路径")
    private String filePath;
    @Schema(description = "文件名称")
    private String name;
    @ApiModelProperty(value = "文件大小")
    @Schema(description = "文件路径")
    private String url;
    @Schema(description = "文件大小")
    private int fileSize;
    @ApiModelProperty(value = "开票台账ID")
    @Schema(description = "开票台账ID")
    private Integer invoiceLedgerId;
    @ApiModelProperty(value = "创建时间")
    @Schema(description = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
    @ApiModelProperty(value = "修改时间")
    @Schema(description = "修改时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
    @ApiModelProperty(value = "创建用户")
    @Schema(description = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @ApiModelProperty(value = "修改用户")
    @Schema(description = "修改用户")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Integer updateUser;
    @ApiModelProperty(value = "租户ID")
    @Schema(description = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Integer tenantId;
    private Long tenantId;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}