DeliveryFeePlanTimeRule.java
630 Bytes
package com.diligrp.rider.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.math.BigDecimal;
@Data
@TableName("delivery_fee_plan_time_rule")
public class DeliveryFeePlanTimeRule {
@TableId(type = IdType.AUTO)
private Long id;
private Long planId;
private Integer startMinute;
private Integer endMinute;
private BigDecimal fee;
private Integer enabled;
private Integer listOrder;
private Long createTime;
private Long updateTime;
}