package com.ruoyi.vehicle.pojo; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; import java.math.BigDecimal; import java.time.LocalDate; import java.time.LocalDateTime; @Data @TableName("p_vehicle_cost") public class VehicleCost { @TableId(type = IdType.AUTO) private Long id; private Long vehicleId; private String costType; private BigDecimal amount; private LocalDate costDate; private String remark; @TableField(fill = FieldFill.INSERT) private Long createUser; @TableField(fill = FieldFill.INSERT) private LocalDateTime createTime; @TableField(fill = FieldFill.INSERT_UPDATE) private Long updateUser; @TableField(fill = FieldFill.INSERT_UPDATE) private LocalDateTime updateTime; @TableField(fill = FieldFill.INSERT) private String tenantId; @TableLogic private String delFlag; }