Files
klp-oa/klp-wms/src/main/java/com/klp/domain/WmsPurchasePlan.java
2025-07-18 10:12:48 +08:00

54 lines
1.0 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.domain;
import com.baomidou.mybatisplus.annotation.*;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 采购计划主对象 wms_purchase_plan
*
* @author Joshi
* @date 2025-07-18
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_purchase_plan")
public class WmsPurchasePlan extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 采购计划ID
*/
@TableId(value = "plan_id")
private Long planId;
/**
* 采购计划编号
*/
private String planCode;
/**
* 负责人
*/
private String owner;
/**
* 关联订单ID
*/
private Long orderId;
/**
* 状态0=新建1=待审核2=已审核3=已完成4=已取消)
*/
private Integer status;
/**
* 备注
*/
private String remark;
/**
* 删除标志0=正常1=已删除)
*/
@TableLogic
private Integer delFlag;
}