package com.klp.domain; import com.baomidou.mybatisplus.annotation.*; import com.klp.common.core.domain.BaseEntity; import lombok.Data; import lombok.EqualsAndHashCode; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import org.springframework.format.annotation.DateTimeFormat; /** * 发货计划对象 wms_delivery_plan * * @author klp * @date 2025-11-25 */ @Data @EqualsAndHashCode(callSuper = true) @TableName("wms_delivery_plan") public class WmsDeliveryPlan extends BaseEntity { private static final long serialVersionUID=1L; /** * 计划唯一ID */ @TableId(value = "plan_id") private Long planId; /** * 发货计划名称(格式:YYYY-MM-DD-序号,如2025-11-25-001) */ private String planName; /** * 计划日期 */ private Date planDate; /** * 计划类型: 发货0,收货1 */ private Integer planType; /** * 备注 */ private String remark; /** * 删除标志(0=正常,1=已删除) */ private Integer delFlag; // 钢卷集合 private String coil; //-- 1. 新增审核状态字段(核心) private Integer auditStatus; //-- 2. 新增审核人字段 private String auditBy; //-- 3. 新增审核时间字段 @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date auditTime; //关联订单id private Long orderId; }