liding
2026-04-23 8e4456bfa6dc84a1c37c13ee515fa9d6347cc480
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.production.bean.vo;
 
import com.ruoyi.production.pojo.ProductionPlan;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
@EqualsAndHashCode(callSuper = true)
@Data
@Schema(name = "ProductionPlanVo", description = "生产计划返回对象")
public class ProductionPlanVo extends ProductionPlan {
    @Schema(description = "物料编码")
    private String materialCode;
 
    @Schema(description = "产品名称")
    private String productName;
 
    @Schema(description = "规格型号")
    private String model;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "关联产品物料ID")
    private Long productMaterialId;
}