feat: 产线负载接口

This commit is contained in:
JR
2025-07-30 16:42:34 +08:00
parent d699efca54
commit b74c977c60
5 changed files with 97 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
package com.klp.domain.vo;
import lombok.Data;
/**
* 产线负载信息视图对象
*
* @author klp
* @date 2025-07-24
*/
@Data
public class LineLoadInfo {
/**
* 产线ID
*/
private Long lineId;
/**
* 关联的排产计划明细数量
*/
private Integer planDetailCount;
/**
* 排产天数总和
*/
private Integer totalPlanDays;
}