Files
klp-oa/klp-wms/src/main/java/com/klp/domain/bo/WmsSchedulePlanBo.java

60 lines
957 B
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.bo;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.validation.constraints.*;
/**
* 排产计划业务对象 wms_schedule_plan
*
* @author JR
* @date 2025-07-18
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsSchedulePlanBo extends BaseEntity {
/**
* 排产计划ID
*/
private Long planId;
/**
* 排产计划编号
*/
private String planCode;
/**
* 关联订单ID
*/
private Long orderId;
/**
* 版本
*/
private String version;
/**
* 状态0=新建1=已排产2=生产中3=已完成)
*/
private Integer status;
/**
* 备注
*/
private String remark;
/**
* 优先级(0=低1=中2=高3=vip ....)
*/
private Long priority;
/**
* 工艺路线
*/
private String processRoute;
}