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

65 lines
1.2 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;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
/**
* 排产计划明细对象 wms_schedule_plan_detail
*
* @author JR
* @date 2025-07-18
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_schedule_plan_detail")
public class WmsSchedulePlanDetail extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 明细ID
*/
@TableId(value = "detail_id")
private Long detailId;
/**
* 排产计划ID
*/
private Long planId;
/**
* 产线ID
*/
private Long lineId;
/**
* 产品ID
*/
private Long productId;
/**
* 排产数量
*/
private BigDecimal quantity;
/**
* 计划开始日期
*/
private Date startDate;
/**
* 计划结束日期
*/
private Date endDate;
/**
* 备注
*/
private String remark;
/**
* 删除标志0=正常1=已删除)
*/
@TableLogic
private Integer delFlag;
}