|
|
@@ -0,0 +1,112 @@
|
|
|
+package com.aoyang.tms.entity;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import java.io.Serializable;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 其他费用表
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author liujiren
|
|
|
+ * @since 2022-04-23
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("tms_other_fee")
|
|
|
+@ApiModel(value="TmsOtherFee对象", description="其他费用表")
|
|
|
+public class TmsOtherFee implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "id,自增")
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "行程周期id")
|
|
|
+ @TableField("cycle_id")
|
|
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
+ private Long cycleId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "分配卡车id")
|
|
|
+ @TableField("truck_id")
|
|
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
+ private Long truckId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "车牌号")
|
|
|
+ @TableField("car_number")
|
|
|
+ private String carNumber;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "挂车车牌号")
|
|
|
+ @TableField("trailer_number")
|
|
|
+ private String trailerNumber;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "维修费")
|
|
|
+ @TableField("maintenance_fee")
|
|
|
+ private BigDecimal maintenanceFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "打黄油")
|
|
|
+ @TableField("butter_fee")
|
|
|
+ private BigDecimal butterFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "补胎.倒胎")
|
|
|
+ @TableField("tire_fee")
|
|
|
+ private BigDecimal tireFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "过磅.通行.其他")
|
|
|
+ @TableField("weighing_passing_other_fee")
|
|
|
+ private BigDecimal weighingPassingOtherFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "换机油")
|
|
|
+ @TableField("oil_change_fee")
|
|
|
+ private BigDecimal oilChangeFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "审车审证")
|
|
|
+ @TableField("car_review_fee")
|
|
|
+ private BigDecimal carReviewFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "大修理(>3K)")
|
|
|
+ @TableField("repair_fee")
|
|
|
+ private BigDecimal repairFee;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建人id")
|
|
|
+ @TableField("creater")
|
|
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
+ private Long creater;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建人姓名")
|
|
|
+ @TableField("creater_name")
|
|
|
+ private String createrName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ @TableField("create_date")
|
|
|
+ private LocalDateTime createDate;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "修改人id")
|
|
|
+ @TableField("updater")
|
|
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
+ private Long updater;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "修改人姓名")
|
|
|
+ @TableField("updater_name")
|
|
|
+ private String updaterName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "修改日期时间")
|
|
|
+ @TableField("update_date")
|
|
|
+ private LocalDateTime updateDate;
|
|
|
+
|
|
|
+
|
|
|
+}
|