| | |
| | | package com.stylefeng.guns.modular.system.model; |
| | | |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import com.baomidou.mybatisplus.enums.IdType; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @since 2020-09-24 |
| | | */ |
| | | @TableName("t_order_logistics") |
| | | @Data |
| | | public class TOrderLogistics extends Model<TOrderLogistics> { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | /** |
| | | * 红包记录id |
| | | */ |
| | | private Integer redPacketId; |
| | | private String redPacketId; |
| | | /** |
| | | * 优惠券id |
| | | */ |
| | |
| | | private String bindId; |
| | | |
| | | private String tripId; |
| | | /** |
| | | * google行程结束标识-是否结束(0=否,1=是) |
| | | */ |
| | | @TableField("isover") |
| | | private Integer isover; |
| | | /** |
| | | * 争议订单(0=否,1=是) |
| | | */ |
| | | @TableField("isDispute") |
| | | private Integer isDispute; |
| | | /** |
| | | * 服务车型id |
| | | */ |
| | | @TableField("serverCarModelId") |
| | | private Integer serverCarModelId; |
| | | /** |
| | | * 预估里程 |
| | | */ |
| | | @TableField("estimatedMileage") |
| | | private Double estimatedMileage; |
| | | /** |
| | | * 司机预估到达预约单时间 |
| | | */ |
| | | @TableField("estimateArriveTime") |
| | | private Date estimateArriveTime; |
| | | /** |
| | | * 司机预估距离预约点距离(米) |
| | | */ |
| | | @TableField("estimateArriveMileage") |
| | | private Long estimateArriveMileage; |
| | | |
| | | public Integer getOldState() { |
| | | return oldState; |
| | |
| | | this.couponMoney = couponMoney; |
| | | } |
| | | |
| | | public Integer getRedPacketId() { |
| | | return redPacketId; |
| | | } |
| | | |
| | | public void setRedPacketId(Integer redPacketId) { |
| | | this.redPacketId = redPacketId; |
| | | } |
| | | |
| | | public Integer getCouponId() { |
| | | return couponId; |
| | |
| | | this.tripId = tripId; |
| | | } |
| | | |
| | | public String getRedPacketId() { |
| | | return redPacketId; |
| | | } |
| | | |
| | | public void setRedPacketId(String redPacketId) { |
| | | this.redPacketId = redPacketId; |
| | | } |
| | | |
| | | public Integer getIsDispute() { |
| | | return isDispute; |
| | | } |
| | | |
| | | public void setIsDispute(Integer isDispute) { |
| | | this.isDispute = isDispute; |
| | | } |
| | | |
| | | public Integer getIsover() { |
| | | return isover; |
| | | } |
| | | |
| | | public void setIsover(Integer isover) { |
| | | this.isover = isover; |
| | | } |
| | | |
| | | public Integer getServerCarModelId() { |
| | | return serverCarModelId; |
| | | } |
| | | |
| | | public void setServerCarModelId(Integer serverCarModelId) { |
| | | this.serverCarModelId = serverCarModelId; |
| | | } |
| | | |
| | | public Double getEstimatedMileage() { |
| | | return estimatedMileage; |
| | | } |
| | | |
| | | public void setEstimatedMileage(Double estimatedMileage) { |
| | | this.estimatedMileage = estimatedMileage; |
| | | } |
| | | |
| | | public Date getEstimateArriveTime() { |
| | | return estimateArriveTime; |
| | | } |
| | | |
| | | public void setEstimateArriveTime(Date estimateArriveTime) { |
| | | this.estimateArriveTime = estimateArriveTime; |
| | | } |
| | | |
| | | public Long getEstimateArriveMileage() { |
| | | return estimateArriveMileage; |
| | | } |
| | | |
| | | public void setEstimateArriveMileage(Long estimateArriveMileage) { |
| | | this.estimateArriveMileage = estimateArriveMileage; |
| | | } |
| | | |
| | | @Override |
| | | protected Serializable pkVal() { |
| | | return this.id; |