package com.mzl.flower.entity.payment; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.mzl.flower.base.BaseEntity; import lombok.Data; import java.time.LocalDateTime; @Data @TableName("t_delivery_order") public class DeliveryOrder extends BaseEntity { @TableField("order_no") private String orderNo;//单号 @TableField("order_id") private String orderId;//订单id @TableField("supplier_id") private Long supplierId;//供应商ID @TableField("arrive_images") private String arriveImages;//送达照片 @TableField("arrive_time") private LocalDateTime arriveTime;//送达时间 @TableField("check_time") private LocalDateTime checkTime;//质检时间 @TableField("status") private String status;//配送单状态 @TableField("arrive_remarks") private String arriveRemarks;//供应商备注 }